home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / unix-gcc.mak < prev    next >
Text File  |  1997-08-09  |  200KB  |  5,678 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=03
  24. GS_VERSION_MINOR0=03
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970808
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. # makefile for Unix/gcc/X11 configuration.
  47. # Note: this makefile assumes you are using gcc in ANSI mode.
  48.  
  49. #****************************************************************#
  50. #   If you want to change options, DO NOT edit unix-gcc.mak      #
  51. #   or makefile.  Edit gcc-head.mak and run the tar_cat script.  #
  52. #****************************************************************#
  53.  
  54. # ------------------------------- Options ------------------------------- #
  55.  
  56. ####### The following are the only parts of the file you should need to edit.
  57.  
  58. # ------ Generic options ------ #
  59.  
  60. # Define the installation commands and target directories for
  61. # executables and files.  The commands are only relevant to `make install';
  62. # the directories also define the default search path for the
  63. # initialization files (gs_*.ps) and the fonts.
  64.  
  65. INSTALL = install -c
  66. INSTALL_PROGRAM = $(INSTALL) -m 755
  67. INSTALL_DATA = $(INSTALL) -m 644
  68.  
  69. prefix = /usr/local
  70. exec_prefix = $(prefix)
  71. bindir = $(exec_prefix)/bin
  72. scriptdir = $(bindir)
  73. mandir = $(prefix)/man
  74. man1ext = 1
  75. man1dir = $(mandir)/man$(man1ext)
  76. datadir = $(prefix)/share
  77. gsdir = $(datadir)/ghostscript
  78. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  79.  
  80. docdir=$(gsdatadir)/doc
  81. exdir=$(gsdatadir)/examples
  82. GS_DOCDIR=$(docdir)
  83.  
  84. # Define the default directory/ies for the runtime
  85. # initialization and font files.  Separate multiple directories with a :.
  86.  
  87. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  88.  
  89. # Define whether or not searching for initialization files should always
  90. # look in the current directory first.  This leads to well-known security
  91. # and confusion problems, but users insist on it.
  92. # NOTE: this also affects searching for files named on the command line:
  93. # see the "File searching" section of use.txt for full details.
  94. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  95.  
  96. SEARCH_HERE_FIRST=1
  97.  
  98. # Define the name of the interpreter initialization file.
  99. # (There is no reason to change this.)
  100.  
  101. GS_INIT=gs_init.ps
  102.  
  103. # Choose generic configuration options.
  104.  
  105. # -DDEBUG
  106. #    includes debugging features (-Z switch) in the code.
  107. #      Code runs substantially slower even if no debugging switches
  108. #      are set.
  109. # -DNOPRIVATE
  110. #    makes private (static) procedures and variables public,
  111. #      so they are visible to the debugger and profiler.
  112. #      No execution time or space penalty.
  113.  
  114. #GENOPT=-DDEBUG
  115. GENOPT=
  116.  
  117. # Define the name of the executable file.
  118.  
  119. GS=gs
  120.  
  121. # Define the directory where the IJG JPEG library sources are stored,
  122. # and the major version of the library that is stored there.
  123. # You may need to change this if the IJG library version changes.
  124. # See jpeg.mak for more information.
  125.  
  126. JSRCDIR=jpeg-6a
  127. JVERSION=6
  128.  
  129. # Define the directory where the PNG library sources are stored,
  130. # and the version of the library that is stored there.
  131. # You may need to change this if the libpng version changes.
  132. # See libpng.mak for more information.
  133.  
  134. PSRCDIR=libpng
  135. PVERSION=96
  136.  
  137. # Choose whether to use a shared version of the PNG library, and if so,
  138. # what its name is.
  139. # See gs.mak and make.txt for more information.
  140.  
  141. SHARE_LIBPNG=0
  142. LIBPNG_NAME=png
  143.  
  144. # Define the directory where the zlib sources are stored.
  145. # See zlib.mak for more information.
  146.  
  147. ZSRCDIR=zlib
  148.  
  149. # Choose whether to use a shared version of the zlib library, and if so,
  150. # what its name is (usually libz, but sometimes libgz).
  151. # See gs.mak and make.txt for more information.
  152.  
  153. SHARE_ZLIB=0
  154. #ZLIB_NAME=gz
  155. ZLIB_NAME=z
  156.  
  157. # Define how to build the library archives.  (These are not used in any
  158. # standard configuration.)
  159.  
  160. AR=ar
  161. ARFLAGS=qc
  162. RANLIB=ranlib
  163.  
  164. # Define the configuration ID.  Read gs.mak carefully before changing this.
  165.  
  166. CONFIG=
  167.  
  168. # ------ Platform-specific options ------ #
  169.  
  170. # Define the name of the C compiler.
  171.  
  172. CC=gcc
  173.  
  174. # Define the name of the linker for the final link step.
  175. # Normally this is the same as the C compiler.
  176.  
  177. CCLD=$(CC)
  178.  
  179. # Define the default gcc flags.
  180. # To work around the gcc 2.7.x optimizer bug,
  181. # add -Dconst= and remove -Wcast-qual and -Wwrite-strings.
  182.  
  183. #GCFLAGS=-Wall -Wcast-qual -Wpointer-arith -Wstrict-prototypes -Wwrite-strings
  184. GCFLAGS=-Dconst= -Wall -Wpointer-arith -Wstrict-prototypes
  185.  
  186. # Define the other compilation flags.  Add at most one of the following:
  187. #    -DBSD4_2 for 4.2bsd systems.
  188. #    -DSYSV for System V or DG/UX.
  189. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  190. #       or any System III Unix, or System V release 3-or-older Unix.
  191. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  192. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  193. # XCFLAGS can be set from the command line.
  194. # We don't include -ansi, because this gets in the way of the platform-
  195. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  196. #   gcc to accept ANSI-style function prototypes and function definitions.
  197. XCFLAGS=
  198.  
  199. CFLAGS=-O $(GCFLAGS) $(XCFLAGS)
  200.  
  201. # Define platform flags for ld.
  202. # SunOS 4.n may need -Bstatic.
  203. # XLDFLAGS can be set from the command line.
  204. XLDFLAGS=
  205.  
  206. LDFLAGS=$(XLDFLAGS)
  207.  
  208. # Define any extra libraries to link into the executable.
  209. # ISC Unix 2.2 wants -linet.
  210. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  211. # SVR4 may need -lnsl.
  212. # (Libraries required by individual drivers are handled automatically.)
  213.  
  214. EXTRALIBS=
  215.  
  216. # Define the include switch(es) for the X11 header files.
  217. # This can be null if handled in some other way (e.g., the files are
  218. # in /usr/include, or the directory is supplied by an environment variable);
  219. # in particular, SCO Xenix, Unix, and ODT just want
  220. #XINCLUDE=
  221. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  222. # not in $(XINCLUDE).
  223.  
  224. XINCLUDE=-I/usr/local/X/include
  225.  
  226. # Define the directory/ies and library names for the X11 library files.
  227. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  228. # (dynamic libraries on SVR4) and should not include -L.
  229. # Both can be null if these files are in the default linker search path;
  230. # in particular, SCO Xenix, Unix, and ODT just want
  231. #XLIBDIRS=
  232. # Solaris and other SVR4 systems with dynamic linking probably want
  233. #XLIBDIRS=-L/usr/openwin/lib
  234. #XLIBDIR=/usr/openwin/lib
  235. # X11R6 (on any platform) may need
  236. #XLIBS=Xt SM ICE Xext X11
  237.  
  238. #XLIBDIRS=-L/usr/local/X/lib
  239. XLIBDIRS=-L/usr/X11/lib
  240. XLIBDIR=
  241. XLIBS=Xt Xext X11
  242.  
  243. # Define whether this platform has floating point hardware:
  244. #    FPU_TYPE=2 means floating point is faster than fixed point.
  245. # (This is the case on some RISCs with multiple instruction dispatch.)
  246. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  247. # than fixed point.
  248. #    FPU_TYPE=0 means that floating point may be considerably slower.
  249. #    FPU_TYPE=-1 means that floating point is always much slower than
  250. # fixed point.
  251.  
  252. FPU_TYPE=1
  253.  
  254. # ------ Devices and features ------ #
  255.  
  256. # Choose the language feature(s) to include.  See gs.mak for details.
  257.  
  258. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  259.  
  260. # Choose whether to compile the .ps initialization files into the executable.
  261. # See gs.mak for details.
  262.  
  263. COMPILE_INITS=0
  264.  
  265. # Choose whether to store band lists on files or in memory.
  266. # The choices are 'file' or 'memory'.
  267.  
  268. BAND_LIST_STORAGE=file
  269.  
  270. # Choose which compression method to use when storing band lists in memory.
  271. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  272. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  273.  
  274. BAND_LIST_COMPRESSOR=zlib
  275.  
  276. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  277. # See gs.mak and sfxfd.c for more details.
  278.  
  279. FILE_IMPLEMENTATION=stdio
  280.  
  281. # Choose the device(s) to include.  See devs.mak for details.
  282.  
  283. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11gray2.dev x11mono.dev
  284. DEVICE_DEVS1=
  285. DEVICE_DEVS2=
  286. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  287. DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  288. DEVICE_DEVS5=uniprint.dev
  289. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  290. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  291. DEVICE_DEVS8=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  292. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  293. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  294. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  295. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  296. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  297. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  298. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  299.  
  300. # ---------------------------- End of options --------------------------- #
  301.  
  302. # Define the name of the partial makefile that specifies options --
  303. # used in dependencies.
  304.  
  305. MAKEFILE=gcc-head.mak
  306.  
  307. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  308.  
  309. AK=
  310.  
  311. # Define the compilation rules and flags.
  312.  
  313. CCC=$(CC) $(CCFLAGS) -c
  314. CCAUX=$(CC)
  315. #We can't use -fomit-frame-pointer with -pg....
  316. #CCLEAF=$(CCC)
  317. CCLEAF=$(CCC) -fomit-frame-pointer
  318.  
  319. # --------------------------- Generic makefile ---------------------------- #
  320.  
  321. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  322. # is generic.  tar_cat concatenates all these together.
  323. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  324. # This file is part of Aladdin Ghostscript.
  325. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  326. # or distributor accepts any responsibility for the consequences of using it,
  327. # or for whether it serves any particular purpose or works at all, unless he
  328. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  329. # License (the "License") for full details.
  330. # Every copy of Aladdin Ghostscript must include a copy of the License,
  331. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  332. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  333. # under certain conditions described in the License.  Among other things, the
  334. # License requires that the copyright notice and this notice be preserved on
  335. # all copies.
  336.  
  337. # Partial makefile common to all Unix configurations.
  338.  
  339. # This part of the makefile gets inserted after the compiler-specific part
  340. # (xxx-head.mak) and before gs.mak and devs.mak.
  341.  
  342. # ----------------------------- Generic stuff ----------------------------- #
  343.  
  344. # Define the platform name.  For a "stock" System V platform,
  345. # use sysv_ instead of unix_.
  346.  
  347. PLATFORM=unix_
  348.  
  349. # Define the syntax for command, object, and executable files.
  350.  
  351. CMD=
  352. O=-o ./
  353. OBJ=o
  354. XE=
  355. XEAUX=
  356.  
  357. # Define the current directory prefix and command invocations.
  358.  
  359. CAT=cat
  360. D=/
  361. EXPP=
  362. EXP=./
  363. SHELL=/bin/sh
  364. SH=$(SHELL)
  365. SHP=$(SH) $(EXP)
  366.  
  367. # Define generic commands.
  368.  
  369. CP_=cp
  370. RM_=rm -f
  371. RMN_=rm -f
  372.  
  373. # Define the arguments for genconf.
  374.  
  375. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  376.  
  377. # Define the compilation rules and flags.
  378.  
  379. CCFLAGS=$(GENOPT) $(CFLAGS)
  380.  
  381. .c.o: $(AK)
  382.     $(CCC) $*.c
  383.  
  384. CCCF=$(CCC)
  385. CCD=$(CCC)
  386. CCINT=$(CCC)
  387.  
  388. BEGINFILES=
  389. CCBEGIN=$(CCC) *.c
  390.  
  391. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  392. # but that cause `make' to produce warnings.
  393.  
  394. BGIDIR=***UNUSED***
  395. PCFBASM=
  396. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  397. # This file is part of Aladdin Ghostscript.
  398. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  399. # or distributor accepts any responsibility for the consequences of using it,
  400. # or for whether it serves any particular purpose or works at all, unless he
  401. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  402. # License (the "License") for full details.
  403. # Every copy of Aladdin Ghostscript must include a copy of the License,
  404. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  405. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  406. # under certain conditions described in the License.  Among other things, the
  407. # License requires that the copyright notice and this notice be preserved on
  408. # all copies.
  409.  
  410. # Generic makefile, common to all platforms.
  411. # The platform-specific makefiles `include' this file.
  412. # They define the following symbols:
  413. #    GS - the name of the executable (without the extension, if any).
  414. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  415. #        initialization and font files at run time.
  416. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  417. #        look for files in the current directory first).
  418. #    GS_DOCDIR - the directory where documentation will be available
  419. #        at run time.
  420. #    JSRCDIR - the directory where the IJG JPEG library source code
  421. #        is stored (at compilation time).
  422. #    JVERSION - the major version number of the IJG JPEG library.
  423. #    PSRCDIR, PVERSION - the same for libpng.
  424. #    ZSRCDIR - the same for zlib.
  425. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  426. #        an existing compiled libpng (-lpng) instead of compiling and
  427. #        linking libpng explicitly.
  428. #    LIBPNG_NAME, the name of the shared libpng, currently always
  429. #        png (libpng, -lpng).
  430. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  431. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  432. #        and linking libgz/libz explicitly.
  433. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  434. #        or z (for libz, -lz).
  435. #    CONFIG - a configuration ID, added at the request of a customer,
  436. #        that is supposed to help in maintaining multiple variants in
  437. #        a single directory.  Normally this is an empty string;
  438. #        it may be any string that is legal as part of a file name.
  439. #    DEVICE_DEVS - the devices to include in the executable.
  440. #        See devs.mak for details.
  441. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  442. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  443. #    FEATURE_DEVS - what features to include in the executable.
  444. #        Normally this is one of:
  445. #            level1 - a standard PostScript Level 1 language
  446. #            interpreter.
  447. #            level2 - a standard PostScript Level 2 language
  448. #            interpreter.
  449. #            pdf - a PDF-capable interpreter.
  450. #        You may include both level1 and pdf, or both level2 and pdf.
  451. #        The following feature may be added to either of the standard
  452. #        configurations:
  453. #            ccfonts - precompile fonts into C, and link them
  454. #            with the executable.  See fonts.txt for details.
  455. #        The remaining features are of interest primarily to developers
  456. #        who want to "mix and match" features to create custom
  457. #        configurations:
  458. #            dps - (partial) support for Display PostScript extensions:
  459. #            see language.txt for details.
  460. #            btoken - support for binary token encodings.
  461. #            Included automatically in the dps and level2 features.
  462. #            cidfont - (currently partial) support for CID-keyed fonts.
  463. #            color - support for the Level 1 CMYK color extensions.
  464. #            Included automatically in the dps and level2 features.
  465. #            compfont - support for composite (type 0) fonts.
  466. #            Included automatically in the level2 feature.
  467. #            dct - support for DCTEncode/Decode filters.
  468. #            Included automatically in the level2 feature.
  469. #            epsf - support for recognizing and skipping the binary
  470. #            header of MS-DOS EPSF files.
  471. #            filter - support for Level 2 filters (other than eexec,
  472. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  473. #            RunLengthEncode/Decode, and SubFileDecode, which are
  474. #            always included, and DCTEncode/Decode,
  475. #            which are separate).
  476. #            Included automatically in the level2 feature.
  477. #            fzlib - support for zlibEncode/Decode filters.
  478. #            ttfont - support for TrueType fonts.
  479. #            type1 - support for Type 1 fonts and eexec;
  480. #            normally included automatically in all configurations.
  481. #            type42 - support for Type 42 (embedded TrueType) fonts.
  482. #            Included automatically in the level2 feature.
  483. #        There are quite a number of other sub-features that can be
  484. #        selectively included in or excluded from a configuration,
  485. #        but the above are the ones that are most likely to be of
  486. #        interest.
  487. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  488. #        language initialization files (gs_init.ps et al) into the
  489. #        executable, eliminating the need for these files to be present
  490. #        at run time.
  491. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  492. #        lists in memory (with compression if needed).
  493. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  494. #        to use for band lists in memory.
  495. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  496. #        descriptors instead of buffered stdio for file I/O; if set to
  497. #        both, provides both implementations with different procedure
  498. #        names for the fd-based implementation (see sfxfd.c for
  499. #        more information).
  500. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  501. #        table should have a capacity of 2^(16+N) names.  This normally
  502. #        should be set to 0 (or left undefined), since non-zero values
  503. #        result in a larger fixed space overhead and slightly slower code.
  504. #        EXTEND_NAMES is ignored in 16-bit environments.
  505. #
  506. # It is very unlikely that anyone would want to edit the remaining
  507. #   symbols, but we describe them here for completeness:
  508. #    GS_INIT - the name of the initialization file for the interpreter,
  509. #        normally gs_init.ps.
  510. #    PLATFORM - a "device" name for the platform, so that platforms can
  511. #        add various kinds of resources like devices and features.
  512. #    CMD - the suffix for shell command files (e.g., null or .bat).
  513. #        (This is only needed in a few places.)
  514. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  515. #    O - the string for specifying the output file from the C compiler
  516. #        (-o for MS-DOS, -o ./ for Unix).
  517. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  518. #    XE - the extension for executable files (e.g., null or .exe).
  519. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  520. #        for the utility programs (ansi2knr and those compiled with
  521. #        CCAUX).
  522. #    BEGINFILES - the list of files that `make begin' and `make clean'
  523. #        should delete.
  524. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  525. #        one that doesn't use ANSI C syntax.  (It is only needed if
  526. #        the main C compiler also isn't an ANSI compiler.)
  527. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  528. #        genconf, geninit).
  529. #    CCBEGIN - the compilation command for `make begin', normally
  530. #        $(CCC) *.c.
  531. #    CCC - the C invocation for normal compilation.
  532. #    CCD - the C invocation for files that store into frame buffers or
  533. #        device registers.  Needed because some optimizing compilers
  534. #        will eliminate necessary stores.
  535. #    CCCF - the C invocation for compiled fonts and other large,
  536. #        self-contained data modules.  Needed because MS-DOS
  537. #        requires using the 'huge' memory model for these.
  538. #    CCINT - the C invocation for compiling the main interpreter module,
  539. #        normally the same as CCC: this is needed because the
  540. #        Borland compiler generates *worse* code for this module
  541. #        (but only this module) when optimization (-O) is turned on.
  542. #    CCLEAF - the C invocation for compiling modules that contain only
  543. #        leaf procedures, which don't need to build stack frames.
  544. #        This is needed only because many compilers aren't able to
  545. #        recognize leaf procedures on their own.
  546. #    AK - if source files must be converted from ANSI to K&R syntax,
  547. #        this is $(ANSI2KNR_XE); if not, it is null.
  548. #        If a particular platform requires other utility programs
  549. #        to be built, AK must include them too.
  550. #    SHP - the prefix for invoking a shell script in the current directory
  551. #        (null for MS-DOS, $(SH) ./ for Unix).
  552. #    EXPP, EXP - the prefix for invoking an executable program in the
  553. #        current directory (null for MS-DOS, ./ for Unix).
  554. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  555. #    CONFILES - the arguments for genconf to generate the appropriate
  556. #        linker control files (various).
  557. #    CP_ - the command for copying one file to another.  Because of
  558. #        limitations in the MS-DOS/MS Windows environment, the
  559. #        second argument must either be '.' (in which case the
  560. #        write date may be either preserved or set to the current
  561. #        date) or a file name (in which case the write date is
  562. #        always updated).
  563. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  564. #        but limited to a single file or pattern).
  565. #    RMN_ = the command for deleting multiple files / patterns.
  566. #
  567. # The platform-specific makefiles must also include rules for creating
  568. # certain dynamically generated files:
  569. #    gconfig_.h - this indicates the presence or absence of
  570. #        certain system header files that are located in different
  571. #        places on different systems.  (It could be generated by
  572. #        the GNU `configure' program.)
  573. #    gconfigv.h - this indicates the status of certain machine-
  574. #        and configuration-specific features derived from definitions
  575. #        in the platform-specific makefile.
  576.  
  577. # Define the name of this makefile.
  578. GS_MAK=gs.mak
  579.  
  580. # Define the names of the executables.
  581. GS_XE=$(GS)$(XE)
  582. ANSI2KNR_XE=ansi2knr$(XEAUX)
  583. ECHOGS_XE=echogs$(XEAUX)
  584. GENARCH_XE=genarch$(XEAUX)
  585. GENCONF_XE=genconf$(XEAUX)
  586. GENINIT_XE=geninit$(XEAUX)
  587.  
  588. # Define the names of the CONFIG-dependent header files.
  589. # gconfig*.h and gconfx*.h are generated dynamically.
  590. gconfig_h=gconfxx$(CONFIG).h
  591. gconfigf_h=gconfxc$(CONFIG).h
  592.  
  593. # Watcom make insists that rules have a non-empty body!
  594. all default: $(GS_XE)
  595.     $(RM_) _temp_*
  596.  
  597. distclean maintainer-clean realclean: clean
  598.     $(RM_) makefile
  599.  
  600. clean: mostlyclean
  601.     $(RM_) arch.h
  602.     $(RM_) $(GS_XE)
  603.  
  604. mostlyclean:
  605.     $(RMN_) *.$(OBJ) *.a core gmon.out
  606.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  607.     $(RMN_) deflate.h zutil.h
  608.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  609.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  610.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  611.     $(RMN_) gs_init.c $(BEGINFILES)
  612.  
  613. # Remove only configuration-dependent information.
  614. config-clean:
  615.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  616.  
  617. # A rule to do a quick and dirty compilation attempt when first installing
  618. # the interpreter.  Many of the compilations will fail:
  619. # follow this with 'make'.
  620.  
  621. begin:
  622.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  623.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  624.     $(RMN_) gs_init.c $(BEGINFILES)
  625.     make arch.h gconfigv.h
  626.     - $(CCBEGIN)
  627.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  628.     $(RMN_) icfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  629.  
  630. # Auxiliary programs
  631.  
  632. arch.h: $(GENARCH_XE)
  633.     $(EXPP) $(EXP)genarch arch.h
  634.  
  635. # Macros for constructing the *.dev files that describe features and
  636. # devices.
  637. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  638. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  639. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  640. ADDMOD=$(EXP)echogs -e .dev -a-
  641.  
  642. # Define the compilation commands for the third-party libraries.
  643. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  644. CCCJ=$(CCC) -I. -I$(JSRCDIR)
  645. CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  646.  
  647. ######################## How to define new 'features' #######################
  648. #
  649. # One defines new 'features' exactly like devices (see devs.mak for details).
  650. # For example, one would define a feature abc by adding the following to
  651. # gs.mak:
  652. #
  653. #    abc_=abc1.$(OBJ) ...
  654. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  655. #        $(SETMOD) abc $(abc_)
  656. #        $(ADDMOD) abc -obj ... [if needed]
  657. #        $(ADDMOD) abc -oper ... [if appropriate]
  658. #        $(ADDMOD) abc -ps ... [if appropriate]
  659. #
  660. # If the abc feature requires the presence of some other features jkl and
  661. # pqr, then the rules must look like this:
  662. #
  663. #    abc_=abc1.$(OBJ) ...
  664. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  665. #        $(SETMOD) abc $(abc_)
  666. #        ...
  667. #        $(ADDMOD) abc -include jkl pqr
  668.  
  669. # --------------------- Configuration-dependent files --------------------- #
  670.  
  671. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  672. # involve rewriting gsconfig to only save the device name, not the
  673. # contents of the <device>.dev files.
  674. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  675. # features in obscure cases.
  676.  
  677. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  678.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  679.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  680.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  681.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  682.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  683.  
  684. devs_tr=devs.tr$(CONFIG)
  685. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  686.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  687.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  688.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  689.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  690.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  691.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  692.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  693.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  694.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  695.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  696.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  697.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  698.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  699.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  700.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  701.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  702.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  703.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  704.  
  705. # GCONFIG_EXTRAS can be set on the command line.
  706. # Note that it consists of arguments for echogs, i.e.,
  707. # it isn't just literal text.
  708. GCONFIG_EXTRAS=
  709.  
  710. ld_tr=ld$(CONFIG).tr
  711. $(gconfig_h) $(ld_tr) lib.tr: \
  712.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  713.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  714.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  715.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  716.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  717.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  718.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  719.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  720.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  721.  
  722. ################################################################
  723. # The other platform-independent makefiles are concatenated
  724. # (or included) after this one:
  725. #    lib.mak
  726. #    int.mak
  727. #    jpeg.mak
  728. #    libpng.mak
  729. #    zlib.mak
  730. #    devs.mak
  731. ################################################################
  732. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  733. # This file is part of Aladdin Ghostscript.
  734. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  735. # or distributor accepts any responsibility for the consequences of using it,
  736. # or for whether it serves any particular purpose or works at all, unless he
  737. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  738. # License (the "License") for full details.
  739. # Every copy of Aladdin Ghostscript must include a copy of the License,
  740. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  741. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  742. # under certain conditions described in the License.  Among other things, the
  743. # License requires that the copyright notice and this notice be preserved on
  744. # all copies.
  745.  
  746. # (Platform-independent) makefile for graphics library and other support code.
  747. # See the end of gs.mak for where this fits into the build process.
  748.  
  749. # Define the name of this makefile.
  750. LIB_MAK=lib.mak
  751.  
  752. # Define the inter-dependencies of the .h files.
  753. # Since not all versions of `make' defer expansion of macros,
  754. # we must list these in bottom-to-top order.
  755.  
  756. # Generic files
  757.  
  758. arch_h=arch.h
  759. stdpre_h=stdpre.h
  760. std_h=std.h $(arch_h) $(stdpre_h)
  761.  
  762. # Platform interfaces
  763.  
  764. gp_h=gp.h
  765. gpcheck_h=gpcheck.h
  766.  
  767. # Configuration definitions
  768.  
  769. # gconfig*.h are generated dynamically.
  770. gconfig__h=gconfig_.h
  771. gconfigv_h=gconfigv.h
  772. gscdefs_h=gscdefs.h
  773.  
  774. # C library interfaces
  775.  
  776. # Because of variations in the "standard" header files between systems, and
  777. # because we must include std.h before any file that includes sys/types.h,
  778. # we define local include files named *_.h to substitute for <*.h>.
  779.  
  780. vmsmath_h=vmsmath.h
  781.  
  782. dos__h=dos_.h
  783. ctype__h=ctype_.h $(std_h)
  784. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  785. errno__h=errno_.h $(std_h)
  786. malloc__h=malloc_.h $(std_h)
  787. math__h=math_.h $(std_h) $(vmsmath_h)
  788. memory__h=memory_.h $(std_h)
  789. stat__h=stat_.h $(std_h)
  790. stdio__h=stdio_.h $(std_h)
  791. string__h=string_.h $(std_h)
  792. time__h=time_.h $(std_h) $(gconfig__h)
  793. windows__h=windows_.h
  794.  
  795. # Miscellaneous
  796.  
  797. gdebug_h=gdebug.h
  798. gsalloc_h=gsalloc.h
  799. gsargs_h=gsargs.h
  800. gserror_h=gserror.h
  801. gserrors_h=gserrors.h
  802. gsexit_h=gsexit.h
  803. gsgc_h=gsgc.h
  804. gsio_h=gsio.h
  805. gsmdebug_h=gsmdebug.h
  806. gsmemory_h=gsmemory.h
  807. gsrefct_h=gsrefct.h
  808. gsstruct_h=gsstruct.h
  809. gstypes_h=gstypes.h
  810. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  811.  
  812. GX=$(AK) $(gx_h)
  813. GXERR=$(GX) $(gserrors_h)
  814.  
  815. ###### Support
  816.  
  817. ### Include files
  818.  
  819. gsbitops_h=gsbitops.h
  820. gsbittab_h=gsbittab.h
  821. gsflip_h=gsflip.h
  822. gsuid_h=gsuid.h
  823. gsutil_h=gsutil.h
  824. gxarith_h=gxarith.h
  825. gxbitmap_h=gxbitmap.h $(gstypes_h)
  826. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  827. gxfixed_h=gxfixed.h
  828. gxobj_h=gxobj.h $(gxbitmap_h)
  829. # Out of order
  830. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  831.  
  832. ### Executable code
  833.  
  834. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  835.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  836.  
  837. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  838.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  839.  
  840. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  841.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  842.  
  843. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  844.  
  845. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  846. # We thought using CCLEAF would produce smaller code, but it actually
  847. # produces larger code!
  848. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  849.  
  850. # gsflip is not part of the standard configuration: it's rather large,
  851. # and no standard facility requires it.
  852. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  853.     $(CCLEAF) gsflip.c
  854.  
  855. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  856.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  857.  
  858. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  859.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  860.  
  861. # gsnogc currently is only used in library-only configurations.
  862. gsnogc.$(OBJ): gsnogc.c $(GX)\
  863.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  864.  
  865. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  866.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  867.  
  868. ###### Low-level facilities and utilities
  869.  
  870. ### Include files
  871.  
  872. gdevbbox_h=gdevbbox.h
  873. gdevmem_h=gdevmem.h $(gsbitops_h)
  874. gdevmrop_h=gdevmrop.h
  875.  
  876. gsccode_h=gsccode.h
  877. gsccolor_h=gsccolor.h $(gsstruct_h)
  878. gscsel_h=gscsel.h
  879. gscolor1_h=gscolor1.h
  880. gscoord_h=gscoord.h
  881. gscpm_h=gscpm.h
  882. gsdevice_h=gsdevice.h
  883. gsfcmap_h=gsfcmap.h $(gsccode_h)
  884. gsfont_h=gsfont.h
  885. gshsb_h=gshsb.h
  886. gsht_h=gsht.h
  887. gsht1_h=gsht1.h $(gsht_h)
  888. gsiparam_h=gsiparam.h
  889. gsjconf_h=gsjconf.h $(std_h)
  890. gslib_h=gslib.h
  891. gslparam_h=gslparam.h
  892. gsmatrix_h=gsmatrix.h
  893. gspaint_h=gspaint.h
  894. gsparam_h=gsparam.h
  895. gspath2_h=gspath2.h
  896. gspenum_h=gspenum.h
  897. gsropt_h=gsropt.h
  898. gsxfont_h=gsxfont.h
  899. # Out of order
  900. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  901. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  902. gsimage_h=gsimage.h $(gsiparam_h)
  903. gsline_h=gsline.h $(gslparam_h)
  904. gspath_h=gspath.h $(gspenum_h)
  905. gsrop_h=gsrop.h $(gsropt_h)
  906.  
  907. gxbcache_h=gxbcache.h $(gxbitmap_h)
  908. gxchar_h=gxchar.h $(gschar_h)
  909. gxcindex_h=gxcindex.h
  910. gxcvalue_h=gxcvalue.h
  911. gxclio_h=gxclio.h
  912. gxclip2_h=gxclip2.h
  913. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  914. gxcoord_h=gxcoord.h $(gscoord_h)
  915. gxcpath_h=gxcpath.h
  916. gxdda_h=gxdda.h
  917. gxdevrop_h=gxdevrop.h
  918. gxdevmem_h=gxdevmem.h
  919. gxdither_h=gxdither.h
  920. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  921. gxfont0_h=gxfont0.h
  922. gxfrac_h=gxfrac.h
  923. gxftype_h=gxftype.h
  924. gxhttile_h=gxhttile.h
  925. gxhttype_h=gxhttype.h
  926. gxiodev_h=gxiodev.h $(stat__h)
  927. gxline_h=gxline.h $(gslparam_h)
  928. gxlum_h=gxlum.h
  929. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  930. gxpaint_h=gxpaint.h
  931. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  932. gxpcache_h=gxpcache.h
  933. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  934. gxsample_h=gxsample.h
  935. gxstate_h=gxstate.h
  936. gxtmap_h=gxtmap.h
  937. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  938. # The following are out of order because they include other files.
  939. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  940. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  941. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  942.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  943.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  944. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  945. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  946. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h) $(gxftype_h)
  947. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h) $(gxftype_h)
  948. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  949. gscsepr_h=gscsepr.h
  950. gscspace_h=gscspace.h
  951. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  952. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  953. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  954. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  955. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  956. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  957. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  958. gscolor_h=gscolor.h $(gxtmap_h)
  959. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  960.  
  961. gzacpath_h=gzacpath.h
  962. gzcpath_h=gzcpath.h $(gxcpath_h)
  963. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  964. gzline_h=gzline.h $(gxline_h)
  965. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  966. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  967.  
  968. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  969.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  970.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  971.  
  972. sa85x_h=sa85x.h
  973. sbtx_h=sbtx.h
  974. scanchar_h=scanchar.h
  975. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  976. sdct_h=sdct.h
  977. shc_h=shc.h $(gsbittab_h)
  978. siscale_h=siscale.h $(gconfigv_h)
  979. sjpeg_h=sjpeg.h
  980. slzwx_h=slzwx.h
  981. spcxx_h=spcxx.h
  982. spdiffx_h=spdiffx.h
  983. spngpx_h=spngpx.h
  984. srlx_h=srlx.h
  985. sstring_h=sstring.h
  986. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  987. szlibx_h=szlibx.h
  988. # Out of order
  989. scf_h=scf.h $(shc_h)
  990. scfx_h=scfx.h $(shc_h)
  991. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  992.  $(siscale_h) $(strimpl_h)
  993.  
  994. ### Executable code
  995.  
  996. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  997. # rather than in libcore, which is clearly wrong.
  998. gconfig=gconfig$(CONFIG)
  999. $(gconfig).$(OBJ): gconf.c $(GX) \
  1000.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  1001.     $(RM_) gconfig.h
  1002.     $(RM_) $(gconfig).c
  1003.     $(CP_) $(gconfig_h) gconfig.h
  1004.     $(CP_) gconf.c $(gconfig).c
  1005.     $(CCC) $(gconfig).c
  1006.     $(RM_) gconfig.h
  1007.     $(RM_) $(gconfig).c
  1008.  
  1009. gscdefs=gscdefs$(CONFIG)
  1010. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  1011.     $(RM_) gconfig.h
  1012.     $(RM_) $(gscdefs).c
  1013.     $(CP_) $(gconfig_h) gconfig.h
  1014.     $(CP_) gscdef.c $(gscdefs).c
  1015.     $(CCC) $(gscdefs).c
  1016.     $(RM_) gconfig.h
  1017.     $(RM_) $(gscdefs).c
  1018.  
  1019. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1020.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1021.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1022.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1023.  
  1024. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1025.   $(gsmdebug_h) $(gxbcache_h)
  1026.  
  1027. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1028.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1029.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1030.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1031.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1032.  
  1033. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1034.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1035.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1036.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1037.  
  1038. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1039.  $(gsutil_h)\
  1040.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1041.  $(gxmatrix_h) $(gzht_h)
  1042.  
  1043. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1044.   $(gsccolor_h) \
  1045.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1046.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1047.  
  1048. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1049.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1050.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1051.  
  1052. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1053.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1054.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1055.  
  1056. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1057.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1058.  
  1059. gxdither.$(OBJ): gxdither.c $(GX) \
  1060.   $(gsstruct_h) $(gsdcolor_h) \
  1061.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1062.  
  1063. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1064.   $(gsstruct_h) \
  1065.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1066.   $(gxistate_h) $(gxpaint_h) \
  1067.   $(gzcpath_h) $(gzpath_h)
  1068.  
  1069. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1070.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1071.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1072.  
  1073. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1074.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1075.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1076.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1077.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1078.  
  1079. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1080.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1081.  
  1082. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1083.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1084.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1085.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1086.  $(gzht_h) $(gzpath_h)
  1087.  
  1088. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1089.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1090.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1091.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1092.  $(gzht_h) $(gzpath_h)
  1093.  
  1094. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1095.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1096.  
  1097. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1098.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1099.  
  1100. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1101.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1102.  
  1103. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1104.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1105.  
  1106. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1107.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1108.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1109.  
  1110. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1111.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1112.  
  1113. gxsample.$(OBJ): gxsample.c $(GX)\
  1114.  $(gxsample_h)
  1115.  
  1116. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1117.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1118.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1119.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1120.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1121.  
  1122. ###### Higher-level facilities
  1123.  
  1124. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1125.  $(gspath_h) $(gsstruct_h) \
  1126.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1127.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1128.  
  1129. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1130.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1131.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1132.  
  1133. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1134.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1135.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1136.  
  1137. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(ctype__h) $(memory__h) $(string__h) $(gp_h)\
  1138.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1139.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1140.  
  1141. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1142.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1143.  
  1144. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1145.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1146.  
  1147. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1148.  $(gschar_h) $(gsstruct_h) \
  1149.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1150.  $(gzstate_h)
  1151.  
  1152. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1153.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1154.  
  1155. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1156.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1157.  
  1158. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1159.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1160.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1161.  
  1162. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1163.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1164.  
  1165. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1166.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1167.  
  1168. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1169.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1170.  
  1171. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1172.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1173.  
  1174. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1175.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1176.  
  1177. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1178.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1179.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1180.  $(gzpath_h) $(gzstate_h)
  1181.  
  1182. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1183.  $(gsparam_h) $(gsstruct_h)
  1184.  
  1185. gspath.$(OBJ): gspath.c $(GXERR) \
  1186.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1187.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1188.  
  1189. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1190.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1191.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1192.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1193.  
  1194. ###### The internal devices
  1195.  
  1196. ### The built-in device implementations:
  1197.  
  1198. # The bounding box device is not normally a free-standing device.
  1199. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1200. # define TEST in gdevbbox.c.
  1201. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1202.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1203.  
  1204. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1205.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1206.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1207.  
  1208. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1209.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1210.  
  1211. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1212.  $(gsbittab_h) $(gsropt_h)\
  1213.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1214.  
  1215. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1216.   $(gxdevice_h)
  1217.  
  1218. # The render/RGB device is only here as an example, but we can configure
  1219. # it as a real device for testing.
  1220. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1221.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1222.  
  1223. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1224.  $(gdevprn_h)
  1225.  
  1226. ### The memory devices:
  1227.  
  1228. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1229.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1230.  
  1231. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1232.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1233.  
  1234. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1235.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1236.  
  1237. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1238.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1239.  
  1240. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1241.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1242.  
  1243. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1244.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1245.  
  1246. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1247.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1248.  
  1249. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1250.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1251.  
  1252. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1253.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1254.  
  1255. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1256.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1257.  
  1258. # Create a pseudo-"feature" for the entire graphics library.
  1259.  
  1260. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1261. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1262. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1263. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1264. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1265. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1266. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1267. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1268. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1269. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1270. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1271. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1272. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1273. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1274. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1275. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1276. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1277. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1278. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1279. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1280.     $(EXP)echogs -w libs.dev $(LIB1s)
  1281.     $(EXP)echogs -a libs.dev $(LIB2s)
  1282.     $(EXP)echogs -a libs.dev $(LIB3s)
  1283.     $(EXP)echogs -a libs.dev $(LIB4s)
  1284.     $(EXP)echogs -a libs.dev $(LIB5s)
  1285.     $(EXP)echogs -a libs.dev $(LIB6s)
  1286.     $(ADDMOD) libs -init gscolor
  1287.  
  1288. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1289.     $(EXP)echogs -w libx.dev $(LIB1x)
  1290.     $(EXP)echogs -a libx.dev $(LIB2x)
  1291.     $(EXP)echogs -a libx.dev $(LIB3x)
  1292.     $(EXP)echogs -a libx.dev $(LIB4x)
  1293.     $(EXP)echogs -a libx.dev $(LIB5x)
  1294.     $(EXP)echogs -a libx.dev $(LIB6x)
  1295.     $(ADDMOD) libx -init gximage1 gximage2
  1296.  
  1297. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1298.     $(EXP)echogs -w libd.dev $(LIB1d)
  1299.     $(EXP)echogs -a libd.dev $(LIB2d)
  1300.     $(EXP)echogs -a libd.dev $(LIB3d)
  1301.  
  1302. # roplib shouldn't be required....
  1303. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1304.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1305.     $(SETMOD) libcore
  1306.     $(ADDMOD) libcore -dev nullpage
  1307.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1308.  
  1309. # ---------------- Stream support ---------------- #
  1310. # Currently the only thing in the library that uses this is clists.
  1311.  
  1312. stream_h=stream.h $(scommon_h)
  1313.  
  1314. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1315.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1316.  
  1317. # ---------------- File streams ---------------- #
  1318. # Currently only the high-level drivers use these, but more drivers will
  1319. # probably use them eventually.
  1320.  
  1321. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1322. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1323.     $(SETMOD) sfile $(sfile_)
  1324.  
  1325. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1326.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1327.  
  1328. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1329.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1330.  
  1331. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1332.  
  1333. # ---------------- CCITTFax filters ---------------- #
  1334. # These are used by clists, some drivers, and Level 2 in general.
  1335.  
  1336. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1337. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1338.     $(SETMOD) cfe $(cfe_)
  1339.  
  1340. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1341.   $(scf_h) $(strimpl_h) $(scfx_h)
  1342.  
  1343. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1344.  
  1345. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1346.  
  1347. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1348. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1349.     $(SETMOD) cfd $(cfd_)
  1350.  
  1351. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1352.   $(scf_h) $(strimpl_h) $(scfx_h)
  1353.  
  1354. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1355.  
  1356. # ---------------- DCT (JPEG) filters ---------------- #
  1357. # These are used by Level 2, and by the JPEG-writing driver.
  1358.  
  1359. # Common code
  1360.  
  1361. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1362.  
  1363. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1364.  $(sdct_h) $(strimpl_h)\
  1365.  jpeglib.h
  1366.  
  1367. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1368.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1369.  jerror.h jpeglib.h
  1370.  
  1371. # Encoding (compression)
  1372.  
  1373. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1374. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1375.     $(SETMOD) sdcte $(sdcte_)
  1376.     $(ADDMOD) sdcte -include jpege
  1377.  
  1378. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1379.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1380.   jerror.h jpeglib.h
  1381.  
  1382. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1383.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1384.  jerror.h jpeglib.h
  1385.  
  1386. # Decoding (decompression)
  1387.  
  1388. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1389. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1390.     $(SETMOD) sdctd $(sdctd_)
  1391.     $(ADDMOD) sdctd -include jpegd
  1392.  
  1393. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1394.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1395.   jerror.h jpeglib.h
  1396.  
  1397. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1398.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1399.  jerror.h jpeglib.h
  1400.  
  1401. # ---------------- LZW filters ---------------- #
  1402. # These are used by Level 2 in general.
  1403.  
  1404. slzwe_=slzwce
  1405. #slzwe_=slzwe
  1406. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1407. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1408.     $(SETMOD) lzwe $(lzwe_)
  1409.  
  1410. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1411. slzwe.dev: lzwe.dev
  1412.     $(CP_) lzwe.dev slzwe.dev
  1413.  
  1414. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1415.   $(slzwx_h) $(strimpl_h)
  1416.  
  1417. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1418.   $(slzwx_h) $(strimpl_h)
  1419.  
  1420. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1421.   $(slzwx_h) $(strimpl_h)
  1422.  
  1423. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1424. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1425.     $(SETMOD) lzwd $(lzwd_)
  1426.  
  1427. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1428. slzwd.dev: lzwd.dev
  1429.     $(CP_) lzwd.dev slzwd.dev
  1430.  
  1431. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1432.   $(slzwx_h) $(strimpl_h)
  1433.  
  1434. # ---------------- PCX decoding filter ---------------- #
  1435. # This is an adhoc filter not used by anything in the standard configuration.
  1436.  
  1437. pcxd_=spcxd.$(OBJ)
  1438. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1439.     $(SETMOD) pcxd $(pcxd_)
  1440.  
  1441. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1442.   $(spcxx_h) $(strimpl_h)
  1443.  
  1444. # ---------------- Pixel-difference filters ---------------- #
  1445. # The Predictor facility of the LZW and Flate filters uses these.
  1446.  
  1447. pdiff_=spdiff.$(OBJ)
  1448. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1449.     $(SETMOD) pdiff $(pdiff_)
  1450.  
  1451. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1452.  $(spdiffx_h) $(strimpl_h)
  1453.  
  1454. # ---------------- PNG pixel prediction filters ---------------- #
  1455. # The Predictor facility of the LZW and Flate filters uses these.
  1456.  
  1457. pngp_=spngp.$(OBJ)
  1458. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1459.     $(SETMOD) pngp $(pngp_)
  1460.  
  1461. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1462.   $(spngpx_h) $(strimpl_h)
  1463.  
  1464. # ---------------- RunLength filters ---------------- #
  1465. # These are used by clists and also by Level 2 in general.
  1466.  
  1467. rle_=srle.$(OBJ)
  1468. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1469.     $(SETMOD) rle $(rle_)
  1470.  
  1471. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1472.   $(srlx_h) $(strimpl_h)
  1473.  
  1474. rld_=srld.$(OBJ)
  1475. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1476.     $(SETMOD) rld $(rld_)
  1477.  
  1478. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1479.   $(srlx_h) $(strimpl_h)
  1480.  
  1481. # ---------------- String encoding/decoding filters ---------------- #
  1482. # These are used by the PostScript and PDF writers, and also by the
  1483. # PostScript interpreter.
  1484.  
  1485. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1486.  $(scanchar_h) $(scommon_h)
  1487.  
  1488. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1489.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1490.  
  1491. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1492.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1493.  
  1494. # ---------------- zlib filters ---------------- #
  1495. # These are used by clists and are also available as filters.
  1496.  
  1497. szlibc_=szlibc.$(OBJ)
  1498.  
  1499. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1500.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1501.     $(CCCZ) szlibc.c
  1502.  
  1503. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1504. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1505.     $(SETMOD) szlibe $(szlibe_)
  1506.     $(ADDMOD) szlibe -include zlibe
  1507.  
  1508. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1509.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1510.     $(CCCZ) szlibe.c
  1511.  
  1512. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1513. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1514.     $(SETMOD) szlibd $(szlibd_)
  1515.     $(ADDMOD) szlibd -include zlibd
  1516.  
  1517. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1518.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1519.     $(CCCZ) szlibd.c
  1520.  
  1521. # ---------------- Command lists ---------------- #
  1522.  
  1523. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1524.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1525. gxclpage_h=gxclpage.h $(gxclio_h)
  1526. gxclpath_h=gxclpath.h $(gxfixed_h)
  1527.  
  1528. # Command list package.  Currently the higher-level facilities are required,
  1529. # but eventually they will be optional.
  1530. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1531.     $(SETMOD) clist -include clbase clpath
  1532.  
  1533. # Base command list facility.
  1534. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1535. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1536. clbase_=$(clbase1_) $(clbase2_)
  1537. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1538.   cfe.dev cfd.dev rle.dev rld.dev
  1539.     $(SETMOD) clbase $(clbase1_)
  1540.     $(ADDMOD) clbase -obj $(clbase2_)
  1541.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1542.  
  1543. gdevht_h=gdevht.h $(gzht_h)
  1544.  
  1545. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1546.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1547.  
  1548. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1549.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1550.  
  1551. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1552.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1553.  
  1554. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1555.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1556.  
  1557. # (gxclread shouldn't need gxclpath.h)
  1558. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1559.  $(gdevht_h)\
  1560.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1561.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1562.  $(gxdevice_h) $(gxdevmem_h)\
  1563.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1564.  $(stream_h) $(strimpl_h)
  1565.  
  1566. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1567.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1568.  
  1569. # Higher-level command list facilities.
  1570. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1571. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1572.     $(SETMOD) clpath $(clpath_)
  1573.     $(ADDMOD) clpath -include psl2cs
  1574.     $(ADDMOD) clpath -init climag clpath
  1575.  
  1576. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1577.  $(gscspace_h)\
  1578.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1579.  $(gxfmap_h)\
  1580.  $(siscale_h) $(strimpl_h)
  1581.  
  1582. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1583.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1584.  $(gxpaint_h) \
  1585.  $(gzcpath_h) $(gzpath_h)
  1586.  
  1587. # Implement band lists on files.
  1588.  
  1589. clfile_=gxclfile.$(OBJ)
  1590. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1591.     $(SETMOD) clfile $(clfile_)
  1592.  
  1593. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1594.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1595.  
  1596. # Implement band lists in memory (RAM).
  1597.  
  1598. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1599. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1600.     $(SETMOD) clmemory $(clmemory_)
  1601.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1602.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1603.  
  1604. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1605.  
  1606. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1607.   $(gxclmem_h)
  1608.  
  1609. # Implement the compression method for RAM-based band lists.
  1610.  
  1611. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1612.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1613.  
  1614. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1615.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1616.     $(CCCZ) gxclzlib.c
  1617.  
  1618. # ---------------- Page devices ---------------- #
  1619. # We include this here, rather than in devs.mak, because it is more like
  1620. # a feature than a simple device.
  1621.  
  1622. page_=gdevprn.$(OBJ)
  1623. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1624.     $(SETMOD) page $(page_)
  1625.     $(ADDMOD) page -include clist
  1626.  
  1627. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1628.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1629.  
  1630. # ---------------- Vector devices ---------------- #
  1631. # We include this here for the same reasons as page.dev.
  1632.  
  1633. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1634.  
  1635. vector_=gdevvec.$(OBJ)
  1636. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1637.     $(SETMOD) vector $(vector_)
  1638.     $(ADDMOD) vector -include bbox
  1639.  
  1640. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1641.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1642.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1643.  $(gzcpath_h) $(gzpath_h)
  1644.  
  1645. # ---------------- Image scaling filter ---------------- #
  1646.  
  1647. iscale_=siscale.$(OBJ)
  1648. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1649.     $(SETMOD) iscale $(iscale_)
  1650.  
  1651. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1652.   $(siscale_h) $(strimpl_h)
  1653.  
  1654. # ---------------- RasterOp et al ---------------- #
  1655. # Currently this module is required, but it should be optional.
  1656.  
  1657. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1658. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1659.     $(SETMOD) roplib $(roplib_)
  1660.     $(ADDMOD) roplib -init roplib
  1661.  
  1662. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1663.   $(gxdevice_h) $(gxdevmem_h)
  1664.  
  1665. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1666.   $(gsbittab_h) $(gsropt_h) \
  1667.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1668.   $(gdevmrop_h)
  1669.  
  1670. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1671.   $(gsrop_h) $(gzstate_h)
  1672.  
  1673. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1674.     $(CCLEAF) gsroptab.c
  1675.  
  1676. # -------- Composite (PostScript Type 0) font support -------- #
  1677.  
  1678. cmaplib_=gsfcmap.$(OBJ)
  1679. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1680.     $(SETMOD) cmaplib $(cmaplib_)
  1681.  
  1682. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1683.  $(gsstruct_h) $(gxfcmap_h)
  1684.  
  1685. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1686. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1687.     $(SETMOD) psf0lib $(psf0lib_)
  1688.     $(ADDMOD) psf0lib -include cmaplib
  1689.  
  1690. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1691.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1692.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1693.  
  1694. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1695.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1696.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1697.  
  1698. # ---------------- Pattern color ---------------- #
  1699.  
  1700. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1701. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1702.     $(SETMOD) patlib -include cmyklib psl2cs
  1703.     $(ADDMOD) patlib -obj $(patlib_)
  1704.  
  1705. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1706.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1707.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1708.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1709.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1710.  
  1711. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1712.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1713.  
  1714. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1715.  $(gsstruct_h) $(gsutil_h)\
  1716.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1717.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1718.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1719.  
  1720. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1721.  
  1722. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1723.  
  1724. gscrypt1_h=gscrypt1.h
  1725. gstype1_h=gstype1.h
  1726. gxfont1_h=gxfont1.h
  1727. gxop1_h=gxop1.h
  1728. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1729.  
  1730. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1731.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1732.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1733.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1734.  $(gzpath_h)
  1735.  
  1736. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1737.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1738.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1739.  
  1740. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1741.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1742.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1743.  
  1744. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1745.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1746.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1747.  $(gzpath_h)
  1748.  
  1749. # Type 1 charstrings
  1750.  
  1751. psf1lib_=gstype1.$(OBJ)
  1752. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1753.     $(SETMOD) psf1lib $(psf1lib_)
  1754.     $(ADDMOD) psf1lib $(type1lib_)
  1755.     $(ADDMOD) psf1lib -init gstype1
  1756.  
  1757. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1758.  $(gsstruct_h)\
  1759.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1760.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1761.  $(gzpath_h)
  1762.  
  1763. # Type 2 charstrings
  1764.  
  1765. psf2lib_=gstype2.$(OBJ)
  1766. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1767.     $(SETMOD) psf2lib $(psf2lib_)
  1768.     $(ADDMOD) psf2lib $(type1lib_)
  1769.     $(ADDMOD) psf2lib -init gstype2
  1770.  
  1771. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1772.  $(gsstruct_h)\
  1773.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1774.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1775.  $(gzpath_h)
  1776.  
  1777. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1778.  
  1779. ttflib_=gstype42.$(OBJ)
  1780. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1781.     $(SETMOD) ttflib $(ttflib_)
  1782.  
  1783. gxfont42_h=gxfont42.h
  1784.  
  1785. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1786.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1787.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1788.  
  1789. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1790.  
  1791. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1792. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1793.     $(SETMOD) cmyklib $(cmyklib_)
  1794.     $(ADDMOD) cmyklib -init gscolor1
  1795.  
  1796. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1797.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1798.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1799.   $(gzstate_h)
  1800.  
  1801. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1802.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1803.  
  1804. colimlib_=gximage3.$(OBJ)
  1805. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1806.     $(SETMOD) colimlib $(colimlib_)
  1807.     $(ADDMOD) colimlib -init gximage3
  1808.  
  1809. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1810.  $(gsccolor_h) $(gspaint_h)\
  1811.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1812.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1813.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1814.  $(gzpath_h) $(gzstate_h)
  1815.  
  1816. # ---------------- HSB color ---------------- #
  1817.  
  1818. hsblib_=gshsb.$(OBJ)
  1819. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1820.     $(SETMOD) hsblib $(hsblib_)
  1821.  
  1822. gshsb.$(OBJ): gshsb.c $(GX) \
  1823.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1824.  
  1825. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1826.  
  1827. path1lib_=gspath1.$(OBJ)
  1828. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1829.     $(SETMOD) path1lib $(path1lib_)
  1830.  
  1831. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1832.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1833.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1834.   $(gzstate_h) $(gzpath_h)
  1835.  
  1836. # --------------- Level 2 color space and color image support --------------- #
  1837.  
  1838. psl2cs_=gscolor2.$(OBJ)
  1839. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1840.     $(SETMOD) psl2cs $(psl2cs_)
  1841.  
  1842. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1843.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1844.   $(gzstate_h)
  1845.  
  1846. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1847. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1848.     $(SETMOD) psl2lib $(psl2lib_)
  1849.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1850.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1851.  
  1852. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1853.  $(gsccolor_h) $(gspaint_h)\
  1854.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1855.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1856.  $(gxmatrix_h)\
  1857.  $(gzpath_h)
  1858.  
  1859. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1860.  $(gsccolor_h) $(gspaint_h)\
  1861.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1862.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1863.  $(gxmatrix_h)\
  1864.  $(gzpath_h)
  1865.  
  1866. # ---------------- Display Postscript / Level 2 support ---------------- #
  1867.  
  1868. dps2lib_=gsdps1.$(OBJ)
  1869. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1870.     $(SETMOD) dps2lib $(dps2lib_)
  1871.  
  1872. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1873.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1874.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1875.  
  1876. # ---------------- CIE color ---------------- #
  1877.  
  1878. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1879. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1880.     $(SETMOD) cielib $(cielib_)
  1881.  
  1882. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1883.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1884.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1885.  
  1886. gxctable.$(OBJ): gxctable.c $(GX) \
  1887.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1888.  
  1889. # ---------------- Separation colors ---------------- #
  1890.  
  1891. seprlib_=gscsepr.$(OBJ)
  1892. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1893.     $(SETMOD) seprlib $(seprlib_)
  1894.  
  1895. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1896.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1897.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1898.  
  1899. # ----------------------- Platform-specific modules ----------------------- #
  1900. # Platform-specific code doesn't really belong here: this is code that is
  1901. # shared among multiple platforms.
  1902.  
  1903. # Frame buffer implementations.
  1904.  
  1905. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1906.   $(gp_h) $(gxdevice_h)
  1907.  
  1908. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1909.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1910.  
  1911. # MS-DOS file system, also used by Desqview/X.
  1912. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1913.  
  1914. # MS-DOS file enumeration, *not* used by Desqview/X.
  1915. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1916.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1917.  
  1918. # Other MS-DOS facilities.
  1919. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1920.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1921.  
  1922. # Unix(-like) file system, also used by Desqview/X.
  1923. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1924.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1925.  
  1926. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1927. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1928.  
  1929. # ----------------------------- Main program ------------------------------ #
  1930.  
  1931. # Main program for library testing
  1932.  
  1933. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1934.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1935.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1936.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1937.   $(gxalloc_h) $(gxdevice_h)
  1938. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1939. # This file is part of Aladdin Ghostscript.
  1940. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1941. # or distributor accepts any responsibility for the consequences of using it,
  1942. # or for whether it serves any particular purpose or works at all, unless he
  1943. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1944. # License (the "License") for full details.
  1945. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1946. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1947. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1948. # under certain conditions described in the License.  Among other things, the
  1949. # License requires that the copyright notice and this notice be preserved on
  1950. # all copies.
  1951.  
  1952. # (Platform-independent) makefile for language interpreters.
  1953. # See the end of gs.mak for where this fits into the build process.
  1954.  
  1955. # Define the name of this makefile.
  1956. INT_MAK=int.mak
  1957.  
  1958. # ======================== Interpreter support ======================== #
  1959.  
  1960. # This is support code for all interpreters, not just PostScript and PDF.
  1961. # It knows about the PostScript data types, but isn't supposed to
  1962. # depend on anything outside itself.
  1963.  
  1964. errors_h=errors.h
  1965. idebug_h=idebug.h
  1966. idict_h=idict.h
  1967. igc_h=igc.h
  1968. igcstr_h=igcstr.h
  1969. iname_h=iname.h
  1970. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1971. ipacked_h=ipacked.h
  1972. iref_h=iref.h
  1973. isave_h=isave.h
  1974. isstate_h=isstate.h
  1975. istruct_h=istruct.h $(gsstruct_h)
  1976. iutil_h=iutil.h
  1977. ivmspace_h=ivmspace.h $(gsgc_h)
  1978. opdef_h=opdef.h
  1979. # Nested include files
  1980. ghost_h=ghost.h $(gx_h) $(iref_h)
  1981. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  1982. ialloc_h=ialloc.h $(imemory_h)
  1983. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  1984. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  1985. store_h=store.h $(ialloc_h)
  1986.  
  1987. GH=$(AK) $(ghost_h)
  1988.  
  1989. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  1990. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  1991. isupport_=$(isupport1_) $(isupport2_)
  1992. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  1993.     $(SETMOD) isupport $(isupport1_)
  1994.     $(ADDMOD) isupport -obj $(isupport2_)
  1995.     $(ADDMOD) isupport -init igcref
  1996.  
  1997. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  1998.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  1999.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  2000.  
  2001. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  2002. # but since all the GC enumeration and relocation routines refer to them,
  2003. # it's too hard to separate them out from the Level 1 base.
  2004. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  2005.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  2006.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  2007.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  2008.  
  2009. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  2010.  $(gsexit_h) $(gsstruct_h)\
  2011.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2012.  
  2013. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2014.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2015.  
  2016. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2017.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2018.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2019.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2020.  $(store_h)
  2021.  
  2022. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h)\
  2023.  $(gsstruct_h) $(gxobj_h)\
  2024.  $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2025.  
  2026. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2027.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2028.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2029.  $(ipacked_h) $(store_h)
  2030.  
  2031. ### Include files
  2032.  
  2033. idparam_h=idparam.h
  2034. ilevel_h=ilevel.h
  2035. iparam_h=iparam.h $(gsparam_h)
  2036. istack_h=istack.h
  2037. iutil2_h=iutil2.h
  2038. opcheck_h=opcheck.h
  2039. opextern_h=opextern.h
  2040. # Nested include files
  2041. dstack_h=dstack.h $(istack_h)
  2042. estack_h=estack.h $(istack_h)
  2043. ostack_h=ostack.h $(istack_h)
  2044. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2045.  
  2046. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2047.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2048.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2049.  
  2050. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2051.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2052.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2053.  
  2054. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2055.  $(gsmatrix_h) $(gsuid_h)\
  2056.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2057.  $(oper_h) $(store_h)
  2058.  
  2059. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2060.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2061.  $(opcheck_h) $(store_h)
  2062.  
  2063. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2064.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2065.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2066.  
  2067. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2068.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2069.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2070.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2071.  
  2072. # ======================== PostScript Level 1 ======================== #
  2073.  
  2074. ###### Include files
  2075.  
  2076. files_h=files.h
  2077. fname_h=fname.h
  2078. ichar_h=ichar.h
  2079. icharout_h=icharout.h
  2080. icolor_h=icolor.h
  2081. icontext_h=icontext.h $(imemory_h) $(istack_h)
  2082. icsmap_h=icsmap.h
  2083. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2084. iht_h=iht.h
  2085. iimage_h=iimage.h
  2086. imain_h=imain.h $(gsexit_h)
  2087. imainarg_h=imainarg.h
  2088. iminst_h=iminst.h $(imain_h)
  2089. interp_h=interp.h
  2090. iparray_h=iparray.h
  2091. iscannum_h=iscannum.h
  2092. istream_h=istream.h
  2093. main_h=main.h $(iminst_h)
  2094. overlay_h=overlay.h
  2095. sbwbs_h=sbwbs.h
  2096. sfilter_h=sfilter.h $(gstypes_h)
  2097. shcgen_h=shcgen.h
  2098. smtf_h=smtf.h
  2099. # Nested include files
  2100. bfont_h=bfont.h $(ifont_h)
  2101. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2102. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2103. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2104. sbhc_h=sbhc.h $(shc_h)
  2105. # Include files for optional features
  2106. ibnum_h=ibnum.h
  2107.  
  2108. ### Initialization and scanning
  2109.  
  2110. iconfig=iconfig$(CONFIG)
  2111. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2112.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2113.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2114.     $(RM_) gconfig.h
  2115.     $(RM_) $(iconfig).c
  2116.     $(CP_) $(gconfig_h) gconfig.h
  2117.     $(CP_) iconf.c $(iconfig).c
  2118.     $(CCC) $(iconfig).c
  2119.     $(RM_) gconfig.h
  2120.     $(RM_) $(iconfig).c
  2121.  
  2122. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2123.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2124.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2125.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2126.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2127.  
  2128. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2129.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2130.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2131.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2132.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2133.  
  2134. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2135.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2136.  
  2137. ### Streams
  2138.  
  2139. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2140.   $(sfilter_h) $(strimpl_h)
  2141.  
  2142. ###### Operators
  2143.  
  2144. OP=$(GH) $(errors_h) $(oper_h)
  2145.  
  2146. ### Non-graphics operators
  2147.  
  2148. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2149.  
  2150. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2151.  
  2152. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2153.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2154.  
  2155. zdict.$(OBJ): zdict.c $(OP) \
  2156.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2157.   $(store_h)
  2158.  
  2159. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2160.  $(gsstruct_h) $(gxiodev_h) \
  2161.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2162.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2163.  
  2164. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2165.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2166.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2167.  
  2168. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2169.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2170.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2171.  
  2172. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2173.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2174.  
  2175. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2176.  $(errors_h) $(oper_h)\
  2177.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2178.  $(store_h) $(stream_h) $(strimpl_h)
  2179.  
  2180. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2181.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2182.  
  2183. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2184.  $(gp_h) $(gpcheck_h)\
  2185.  $(gsstruct_h) $(gxiodev_h)\
  2186.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2187.  
  2188. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2189.  
  2190. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2191.   $(errno__h) $(memory__h) $(string__h) \
  2192.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2193.  
  2194. zpacked.$(OBJ): zpacked.c $(OP) \
  2195.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2196.   $(istack_h) $(store_h)
  2197.  
  2198. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2199.  
  2200. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2201.  $(ialloc_h) $(istack_h) $(store_h)
  2202.  
  2203. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2204.  $(gsutil_h)\
  2205.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2206.  
  2207. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2208.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2209.  
  2210. ztoken.$(OBJ): ztoken.c $(OP) \
  2211.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2212.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2213.  
  2214. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2215.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2216.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2217.  
  2218. zvmem.$(OBJ): zvmem.c $(OP)\
  2219.  $(dstack_h) $(estack_h) $(files_h)\
  2220.  $(ialloc_h) $(idict_h) $(igstate_h) $(isave_h) $(store_h) $(stream_h)\
  2221.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2222.  
  2223. ### Graphics operators
  2224.  
  2225. zchar.$(OBJ): zchar.c $(OP)\
  2226.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2227.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2228.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2229.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2230.  
  2231. # zcharout is used for Type 1 and Type 42 fonts only.
  2232. zcharout.$(OBJ): zcharout.c $(OP)\
  2233.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2234.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2235.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2236.  
  2237. zcolor.$(OBJ): zcolor.c $(OP) \
  2238.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2239.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2240.  
  2241. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2242.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2243.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2244.  
  2245. zfont.$(OBJ): zfont.c $(OP)\
  2246.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2247.  $(gzstate_h)\
  2248.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2249.  $(bfont_h) $(store_h)
  2250.  
  2251. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2252.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2253.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2254.  $(ipacked_h) $(store_h)
  2255.  
  2256. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2257.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2258.  
  2259. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2260.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2261.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2262.  
  2263. zimage.$(OBJ): zimage.c $(OP) \
  2264.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2265.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2266.   $(store_h) $(stream_h)
  2267.  
  2268. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2269.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2270.  
  2271. zpaint.$(OBJ): zpaint.c $(OP)\
  2272.  $(gspaint_h) $(igstate_h)
  2273.  
  2274. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2275.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2276.  
  2277. # Define the base PostScript language interpreter.
  2278. # This is the subset of PostScript Level 1 required by our PDF reader.
  2279.  
  2280. INT1=icontext.$(OBJ) idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ)
  2281. INT2=iinit.$(OBJ) interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2282. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2283. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2284. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2285. Z1OPS=zarith zarray zcontrol zdict
  2286. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2287. Z2OPS=zfile zfileio zfilter zfproc
  2288. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2289. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2290. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2291. Z4OPS=zrelbit zstack zstring zsysvm
  2292. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2293. Z5OPS=ztoken ztype zvmem
  2294. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2295. Z6OPS=zchar zcolor zdevice zfont zfont2
  2296. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2297. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2298. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2299. # circular definitions.
  2300. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2301.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2302.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2303. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2304.   iccinit$(COMPILE_INITS).$(OBJ)
  2305. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2306. # We omit libcore.dev, which should be included here, because problems
  2307. # with the Unix linker require libcore to appear last in the link list
  2308. # when libcore is really a library.
  2309. # We omit $(INT_CONFIG) from the dependency list because they have special
  2310. # dependency requirements and are added to the link list at the very end.
  2311. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2312. # change this now.
  2313. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2314.  isupport.dev rld.dev rle.dev sfile.dev
  2315.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2316.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2317.     $(ADDMOD) psbase -obj $(INT1)
  2318.     $(ADDMOD) psbase -obj $(INT2)
  2319.     $(ADDMOD) psbase -obj $(INT3)
  2320.     $(ADDMOD) psbase -obj $(INT4)
  2321.     $(ADDMOD) psbase -obj $(Z1)
  2322.     $(ADDMOD) psbase -oper $(Z1OPS)
  2323.     $(ADDMOD) psbase -obj $(Z2)
  2324.     $(ADDMOD) psbase -oper $(Z2OPS)
  2325.     $(ADDMOD) psbase -obj $(Z3)
  2326.     $(ADDMOD) psbase -oper $(Z3OPS)
  2327.     $(ADDMOD) psbase -obj $(Z4)
  2328.     $(ADDMOD) psbase -oper $(Z4OPS)
  2329.     $(ADDMOD) psbase -obj $(Z5)
  2330.     $(ADDMOD) psbase -oper $(Z5OPS)
  2331.     $(ADDMOD) psbase -obj $(Z6)
  2332.     $(ADDMOD) psbase -oper $(Z6OPS)
  2333.     $(ADDMOD) psbase -obj $(Z7)
  2334.     $(ADDMOD) psbase -oper $(Z7OPS)
  2335.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2336.     $(ADDMOD) psbase -include isupport rld rle sfile
  2337.  
  2338. # -------------------------- Feature definitions -------------------------- #
  2339.  
  2340. # ---------------- Full Level 1 interpreter ---------------- #
  2341.  
  2342. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2343.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2344.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2345.  
  2346. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2347.  
  2348. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2349.     $(SETMOD) color -include cmyklib colimlib cmykread
  2350.  
  2351. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2352. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2353.     $(SETMOD) cmykread $(cmykread_)
  2354.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2355.  
  2356. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2357.   $(gscolor1_h) \
  2358.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2359.   $(gzstate_h) \
  2360.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2361.  
  2362. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2363.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2364.  $(ialloc_h) $(estack_h) $(igstate_h) $(iht_h) $(store_h)
  2365.  
  2366. # ---------------- HSB color ---------------- #
  2367.  
  2368. hsb_=zhsb.$(OBJ)
  2369. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2370.     $(SETMOD) hsb $(hsb_)
  2371.     $(ADDMOD) hsb -include hsblib
  2372.     $(ADDMOD) hsb -oper zhsb
  2373.  
  2374. zhsb.$(OBJ): zhsb.c $(OP) \
  2375.   $(gshsb_h) $(igstate_h) $(store_h)
  2376.  
  2377. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2378.  
  2379. path1_=zpath1.$(OBJ)
  2380. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2381.     $(SETMOD) path1 $(path1_)
  2382.     $(ADDMOD) path1 -include path1lib
  2383.     $(ADDMOD) path1 -oper zpath1
  2384.  
  2385. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2386.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2387.  
  2388. # ================ Level-independent PostScript options ================ #
  2389.  
  2390. # ---------------- BCP filters ---------------- #
  2391.  
  2392. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2393. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2394.     $(SETMOD) bcp $(bcp_)
  2395.     $(ADDMOD) bcp -oper zfbcp
  2396.  
  2397. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2398.   $(sfilter_h) $(strimpl_h)
  2399.  
  2400. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2401.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2402.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2403.  
  2404. # ---------------- Incremental font loading ---------------- #
  2405. # (This only works for Type 1 fonts without eexec encryption.)
  2406.  
  2407. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2408.     $(SETMOD) diskfont -ps gs_diskf
  2409.  
  2410. # ---------------- Double-precision floats ---------------- #
  2411.  
  2412. double_=zdouble.$(OBJ)
  2413. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2414.     $(SETMOD) double $(double_)
  2415.     $(ADDMOD) double -oper zdouble
  2416.  
  2417. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2418.   $(gxfarith_h) $(store_h)
  2419.  
  2420. # ---------------- EPSF files with binary headers ---------------- #
  2421.  
  2422. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2423.     $(SETMOD) epsf -ps gs_epsf
  2424.  
  2425. # ---------------- RasterOp ---------------- #
  2426. # This should be a separable feature in the core also....
  2427.  
  2428. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2429.     $(SETMOD) rasterop -include roplib ropread
  2430.  
  2431. ropread_=zrop.$(OBJ)
  2432. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2433.     $(SETMOD) ropread $(ropread_)
  2434.     $(ADDMOD) ropread -oper zrop
  2435.  
  2436. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2437.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2438.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2439.  
  2440. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2441.  
  2442. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2443.     $(SETMOD) type1 -include psf1lib psf1read
  2444.  
  2445. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2446. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2447.     $(SETMOD) psf1read $(psf1read_)
  2448.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2449.     $(ADDMOD) psf1read -ps gs_type1
  2450.  
  2451. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2452.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2453.  
  2454. zchar1.$(OBJ): zchar1.c $(OP) \
  2455.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2456.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2457.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2458.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2459.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2460.  
  2461. zfont1.$(OBJ): zfont1.c $(OP) \
  2462.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2463.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2464.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2465.  
  2466. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2467.  $(gscrypt1_h)\
  2468.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2469.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2470.  
  2471. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2472.  
  2473. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2474.     $(SETMOD) cff -ps gs_cff
  2475.  
  2476. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2477.     $(SETMOD) type2 -include psf2lib
  2478.  
  2479. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2480.  
  2481. # Native TrueType support
  2482. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2483.     $(SETMOD) ttfont -include type42
  2484.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2485.  
  2486. # Type 42 (embedded TrueType) support
  2487. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2488. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2489.     $(SETMOD) type42 $(type42read_)
  2490.     $(ADDMOD) type42 -include ttflib    
  2491.     $(ADDMOD) type42 -oper zchar42 zfont42
  2492.     $(ADDMOD) type42 -ps gs_typ42
  2493.  
  2494. zchar42.$(OBJ): zchar42.c $(OP) \
  2495.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2496.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2497.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2498.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2499.   $(ifont_h) $(igstate_h) $(store_h)
  2500.  
  2501. zfont42.$(OBJ): zfont42.c $(OP) \
  2502.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2503.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2504.  
  2505. # ======================== Precompilation options ======================== #
  2506.  
  2507. # ---------------- Precompiled fonts ---------------- #
  2508. # See fonts.txt for more information.
  2509.  
  2510. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2511.  
  2512. CCFONT=$(OP) $(ccfont_h)
  2513.  
  2514. # List the fonts we are going to compile.
  2515. # Because of intrinsic limitations in `make', we have to list
  2516. # the object file names and the font names separately.
  2517. # Because of limitations in the DOS shell, we have to break the fonts up
  2518. # into lists that will fit on a single line (120 characters).
  2519. # The rules for constructing the .c files from the fonts themselves,
  2520. # and for compiling the .c files, are in cfonts.mak, not here.
  2521. # For example, to compile the Courier fonts, you should invoke
  2522. #    make -f cfonts.mak Courier_o
  2523. # By convention, the names of the 35 standard compiled fonts use '0' for
  2524. # the foundry name.  This allows users to substitute different foundries
  2525. # without having to change this makefile.
  2526. ccfonts_ps=gs_ccfnt
  2527. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2528. ccfonts1=agk agko agd agdo
  2529. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2530. ccfonts2=bkl bkli bkd bkdi
  2531. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2532. ccfonts3=crr cri crb crbi
  2533. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2534. ccfonts4=hvr hvro hvb hvbo
  2535. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2536. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2537. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2538. ccfonts6=ncr ncri ncb ncbi
  2539. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2540. ccfonts7=plr plri plb plbi
  2541. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2542. ccfonts8=tmr tmri tmb tmbi
  2543. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2544. ccfonts9=syr zcmi zdr
  2545. # The free distribution includes Bitstream Charter, Utopia, and
  2546. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2547. # Charter and Utopia.
  2548. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2549. ccfonts10free=chr chri chb chbi
  2550. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2551. ccfonts11free=utr utri utb utbi
  2552. # Uncomment the alternatives in the next 4 lines if you want
  2553. # Charter and Utopia compiled in.
  2554. #ccfonts10_=$(ccfonts10free_)
  2555. ccfonts10_=
  2556. #ccfonts10=$(ccfonts10free)
  2557. ccfonts10=
  2558. #ccfonts11_=$(ccfonts11free_)
  2559. ccfonts11_=
  2560. #ccfonts11=$(ccfonts11free)
  2561. ccfonts11=
  2562. # Add your own fonts here if desired.
  2563. ccfonts12_=
  2564. ccfonts12=
  2565. ccfonts13_=
  2566. ccfonts13=
  2567. ccfonts14_=
  2568. ccfonts14=
  2569. ccfonts15_=
  2570. ccfonts15=
  2571.  
  2572. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2573. # exists during the execution of the following rule.
  2574. # font2c has the prefix "gs" built into it, so we need to instruct
  2575. # genconf to use the same one.
  2576. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2577.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2578.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2579.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2580.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2581.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2582.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2583.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2584.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2585.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2586.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2587.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2588.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2589.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2590.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2591.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2592.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2593.  
  2594. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2595. # compiled fonts into a separate shared library.
  2596.  
  2597. icfontab=icfontab$(CONFIG)
  2598.  
  2599. # Define ccfont_table separately, so it can be set from the command line
  2600. # to select an alternate compiled font table.
  2601. ccfont_table=$(icfontab)
  2602.  
  2603. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2604.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2605.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2606.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2607.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2608.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2609.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2610.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2611.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2612.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2613.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2614.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2615.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2616.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2617.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2618.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2619.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2620.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2621.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2622.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2623.  
  2624. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2625.     $(CP_) $(gconfigf_h) gconfigf.h
  2626.     $(CCCF) icfontab.c
  2627.  
  2628. # Strictly speaking, ccfonts shouldn't need to include type1,
  2629. # since one could choose to precompile only Type 0 fonts,
  2630. # but getting this exactly right would be too much work.
  2631. ccfonts=ccfonts$(CONFIG)
  2632. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2633.   $(ccfont_table).dev
  2634.     $(SETMOD) $(ccfonts) -include type1
  2635.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2636.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2637.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2638.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2639.  
  2640. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2641.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2642.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2643.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2644.     $(CCCF) iccfont.c
  2645.  
  2646. # ---------------- Compiled initialization code ---------------- #
  2647.  
  2648. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2649.  
  2650. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2651.     $(CCCF) iccinit0.c
  2652.  
  2653. iccinit1.$(OBJ): gs_init.$(OBJ)
  2654.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2655.  
  2656. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2657. # but we don't have any convenient list of them.
  2658. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2659.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2660.  
  2661. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2662.     $(CCCF) gs_init.c
  2663.  
  2664. # ======================== PostScript Level 2 ======================== #
  2665.  
  2666. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2667. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2668. ### This also may require trimming down the sizes of the stacks in interp.c.
  2669.  
  2670. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2671.   psbase.dev devctrl.dev color.dev \
  2672.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2673.   psl2lib.dev psl2read.dev
  2674.     $(SETMOD) lev2min -include psbase devctrl color
  2675.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2676.     $(ADDMOD) lev2min -include psl2lib psl2read
  2677.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2678.  
  2679. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2680.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2681.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2682.  type42.dev xfilter.dev
  2683.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2684.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2685.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2686.     $(ADDMOD) level2 -include sepr type42 xfilter
  2687.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2688.  
  2689. # Define basic Level 2 language support.
  2690. # This is the minimum required for CMap and CIDFont support.
  2691.  
  2692. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2693. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2694.     $(SETMOD) psl2int $(psl2int_)
  2695.     $(ADDMOD) psl2int -include dps2int
  2696.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2697.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2698.  
  2699. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2700.  $(gsparam_h) $(gsutil_h)\
  2701.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2702.  
  2703. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2704.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2705.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2706.  
  2707. # Note that zusparam includes both Level 1 and Level 2 operators.
  2708. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2709.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2710.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2711.  $(iname_h) $(iutil2_h) $(store_h)
  2712.  
  2713. # Define full Level 2 support.
  2714.  
  2715. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2716. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2717. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2718.     $(SETMOD) psl2read $(psl2read_)
  2719.     $(ADDMOD) psl2read -include psl2int dps2read
  2720.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2721.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2722.  
  2723. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2724.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2725.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2726.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2727.  $(store_h)
  2728.  
  2729. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2730.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2731.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2732.  
  2733. zht2.$(OBJ): zht2.c $(OP) \
  2734.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2735.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2736.   $(iht_h) $(store_h)
  2737.  
  2738. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2739.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2740.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2741.  
  2742. # ---------------- Device control ---------------- #
  2743. # This is a catch-all for setpagedevice and IODevices.
  2744.  
  2745. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2746. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2747.     $(SETMOD) devctrl $(devctrl_)
  2748.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2749.     $(ADDMOD) devctrl -iodev null ram calendar
  2750.     $(ADDMOD) devctrl -ps gs_setpd
  2751.  
  2752. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2753.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2754.  $(gxdevice_h) $(gsstate_h)
  2755.  
  2756. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2757.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2758.  
  2759. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2760.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2761.  
  2762. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2763.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2764.  
  2765. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2766.  
  2767. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2768. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2769. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2770.     $(SETMOD) fdecode $(fdecode_)
  2771.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2772.     $(ADDMOD) fdecode -oper zfdecode
  2773.  
  2774. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2775.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2776.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2777.  $(store_h) $(stream_h) $(strimpl_h)
  2778.  
  2779. # Complete Level 2 filter capability.
  2780. filter_=zfilter2.$(OBJ)
  2781. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2782.     $(SETMOD) filter -include fdecode
  2783.     $(ADDMOD) filter -obj $(filter_)
  2784.     $(ADDMOD) filter -include cfe lzwe rle
  2785.     $(ADDMOD) filter -oper zfilter2
  2786.  
  2787. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2788.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2789.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2790.  
  2791. # Extensions beyond Level 2 standard.
  2792. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2793.  zfilterx.$(OBJ)
  2794. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2795.     $(SETMOD) xfilter $(xfilter_)
  2796.     $(ADDMOD) xfilter -include pcxd
  2797.     $(ADDMOD) xfilter -oper zfilterx
  2798.  
  2799. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2800.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2801.  
  2802. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2803.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2804.  
  2805. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2806.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2807.  $(scommon_h) $(shc_h) $(shcgen_h)
  2808.  
  2809. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2810.   $(smtf_h) $(strimpl_h)
  2811.  
  2812. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2813.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2814.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2815.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2816.  
  2817. # ---------------- Binary tokens ---------------- #
  2818.  
  2819. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2820. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2821.     $(SETMOD) btoken $(btoken_)
  2822.     $(ADDMOD) btoken -oper zbseq_l2
  2823.     $(ADDMOD) btoken -ps gs_btokn
  2824.  
  2825. bseq_h=bseq.h
  2826. btoken_h=btoken.h
  2827.  
  2828. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2829.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2830.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2831.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2832.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2833.  
  2834. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2835.  $(ialloc_h) $(idict_h) $(isave_h)\
  2836.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2837.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2838.  
  2839. # ---------------- User paths & insideness testing ---------------- #
  2840.  
  2841. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2842. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2843.     $(SETMOD) upath $(upath_)
  2844.     $(ADDMOD) upath -oper zupath_l2
  2845.  
  2846. zupath.$(OBJ): zupath.c $(OP) \
  2847.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2848.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2849.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2850.  
  2851. # -------- Additions common to Display PostScript and Level 2 -------- #
  2852.  
  2853. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2854.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2855.  
  2856. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2857. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2858. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2859.     $(SETMOD) dps2int $(dps2int_)
  2860.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2861.     $(ADDMOD) dps2int -ps gs_dps1
  2862.  
  2863. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2864. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2865.     $(SETMOD) dps2read $(dps2read_)
  2866.     $(ADDMOD) dps2read -include dps2int
  2867.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2868.     $(ADDMOD) dps2read -ps gs_dps2
  2869.  
  2870. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2871.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2872.  
  2873. zchar2.$(OBJ): zchar2.c $(OP)\
  2874.  $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h)\
  2875.  $(gxchar_h) $(gxfixed_h) $(gxfont_h)\
  2876.  $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h)\
  2877.  $(store_h) $(stream_h) $(ibnum_h)
  2878.  
  2879. zdps1.$(OBJ): zdps1.c $(OP) \
  2880.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2881.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2882.  
  2883. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2884.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2885.  
  2886. # ---------------- Display PostScript ---------------- #
  2887.  
  2888. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2889. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2890. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2891. dps_=zdps.$(OBJ)
  2892. # Note that zcontext is omitted from the -oper list below.
  2893. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2894.     $(SETMOD) dps -include level2
  2895.     $(ADDMOD) dps -obj $(dps_)
  2896.     $(ADDMOD) dps -oper zdps
  2897.     $(ADDMOD) dps -ps gs_dps
  2898.  
  2899. zdps.$(OBJ): zdps.c $(OP)\
  2900.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2901.  
  2902. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2903.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2904.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2905.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2906.  
  2907. # ---------------- NeXT Display PostScript ---------------- #
  2908. #**************** NOT READY FOR USE YET ****************#
  2909.  
  2910. dpsnext_=zdpnext.$(OBJ)
  2911. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2912.     $(SETMOD) dpsnext -include dps
  2913.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2914.     $(ADDMOD) dpsnext -oper zdpnext
  2915.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2916.  
  2917. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2918.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2919.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2920.  
  2921. # -------- Composite (PostScript Type 0) font support -------- #
  2922.  
  2923. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2924.     $(SETMOD) compfont -include psf0lib psf0read
  2925.  
  2926. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2927. # and it's not worth the trouble to exclude.
  2928. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2929. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2930.     $(SETMOD) psf0read $(psf0read_)
  2931.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2932.  
  2933. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2934.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2935.  $(gxfcmap_h) $(gxfont_h)\
  2936.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2937.  
  2938. zfont0.$(OBJ): zfont0.c $(OP)\
  2939.  $(gschar_h) $(gsstruct_h)\
  2940.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2941.  $(gzstate_h)\
  2942.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2943.  $(store_h)
  2944.  
  2945. # ---------------- CMap support ---------------- #
  2946. # Note that this requires at least minimal Level 2 support,
  2947. # because it requires findresource.
  2948.  
  2949. cmapread_=zfcmap.$(OBJ)
  2950. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2951.     $(SETMOD) cmapread $(cmapread_)
  2952.     $(ADDMOD) cmapread -include cmaplib psl2int
  2953.     $(ADDMOD) cmapread -oper zfcmap
  2954.     $(ADDMOD) cmapread -ps gs_cmap
  2955.  
  2956. # ---------------- CIDFont support ---------------- #
  2957. # Note that this requires at least minimal Level 2 support,
  2958. # because it requires findresource.
  2959.  
  2960. cidread_=zcid.$(OBJ)
  2961. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2962.  $(cidread_)
  2963.     $(SETMOD) cidfont $(cidread_)
  2964.     $(ADDMOD) cidfont -include psf1read psl2int type42
  2965.     $(ADDMOD) cidfont -ps gs_cidfn
  2966.     $(ADDMOD) cidfont -oper zcid
  2967.  
  2968. zcid.$(OBJ): zcid.c $(OP)\
  2969.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  2970.  $(bfont_h) $(iname_h) $(store_h)
  2971.  
  2972. # ---------------- CIE color ---------------- #
  2973.  
  2974. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  2975. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  2976.     $(SETMOD) cie $(cieread_)
  2977.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  2978.     $(ADDMOD) cie -include cielib
  2979.  
  2980. icie_h=icie.h
  2981.  
  2982. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  2983.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  2984.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2985.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2986.  
  2987. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  2988.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  2989.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  2990.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2991.  
  2992. # ---------------- Pattern color ---------------- #
  2993.  
  2994. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  2995.     $(SETMOD) pattern -include patlib patread
  2996.  
  2997. patread_=zpcolor.$(OBJ)
  2998. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  2999.     $(SETMOD) patread $(patread_)
  3000.     $(ADDMOD) patread -oper zpcolor_l2
  3001.  
  3002. zpcolor.$(OBJ): zpcolor.c $(OP)\
  3003.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  3004.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  3005.    $(gxfixed_h) $(gxpcolor_h)\
  3006.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  3007.  $(store_h)
  3008.  
  3009. # ---------------- Separation color ---------------- #
  3010.  
  3011. seprread_=zcssepr.$(OBJ)
  3012. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3013.     $(SETMOD) sepr $(seprread_)
  3014.     $(ADDMOD) sepr -oper zcssepr_l2
  3015.     $(ADDMOD) sepr -include seprlib
  3016.  
  3017. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3018.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3019.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3020.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3021.  
  3022. # ---------------- DCT filters ---------------- #
  3023. # The definitions for jpeg*.dev are in jpeg.mak.
  3024.  
  3025. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3026.     $(SETMOD) dct -include dcte dctd
  3027.  
  3028. # Common code
  3029.  
  3030. dctc_=zfdctc.$(OBJ)
  3031.  
  3032. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3033.  $(errors_h) $(opcheck_h)\
  3034.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3035.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3036.  jpeglib.h
  3037.  
  3038. # Encoding (compression)
  3039.  
  3040. dcte_=$(dctc_) zfdcte.$(OBJ)
  3041. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3042.     $(SETMOD) dcte -include sdcte
  3043.     $(ADDMOD) dcte -obj $(dcte_)
  3044.     $(ADDMOD) dcte -oper zfdcte
  3045.  
  3046. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3047.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3048.   jpeglib.h
  3049.  
  3050. # Decoding (decompression)
  3051.  
  3052. dctd_=$(dctc_) zfdctd.$(OBJ)
  3053. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3054.     $(SETMOD) dctd -include sdctd
  3055.     $(ADDMOD) dctd -obj $(dctd_)
  3056.     $(ADDMOD) dctd -oper zfdctd
  3057.  
  3058. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3059.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3060.  jpeglib.h
  3061.  
  3062. # ---------------- zlib/Flate filters ---------------- #
  3063.  
  3064. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3065.     $(SETMOD) fzlib -include szlibe szlibd
  3066.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3067.     $(ADDMOD) fzlib -oper zfzlib
  3068.  
  3069. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3070.   $(errors_h) $(idict_h) $(ifilter_h) \
  3071.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3072.     $(CCCZ) zfzlib.c
  3073.  
  3074. # ================================ PDF ================================ #
  3075.  
  3076. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3077. # In fact, we don't even need all of a Level 1 interpreter.
  3078.  
  3079. # Because of the way the PDF encodings are defined, they must get loaded
  3080. # before we install the Level 2 resource machinery.
  3081. # On the other hand, the PDF .ps files must get loaded after
  3082. # level2dict is defined.
  3083. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3084.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3085.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3086.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3087.     $(ADDMOD) pdfmin -include fdecode type1
  3088.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3089.     $(ADDMOD) pdfmin -emulator PDF
  3090.  
  3091. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3092.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3093.  ttfont.dev type2.dev
  3094.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3095.     $(ADDMOD) pdf -include ttfont type2
  3096.  
  3097. # Reader only
  3098.  
  3099. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3100.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3101.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3102.  
  3103. # pdf_2ps must be the last .ps file loaded.
  3104. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3105.     $(SETMOD) pdfread -include fzlib
  3106.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3107.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3108.     $(ADDMOD) pdfread -ps pdf_2ps
  3109.  
  3110. # ============================= Main program ============================== #
  3111.  
  3112. gs.$(OBJ): gs.c $(GH) \
  3113.   $(imain_h) $(imainarg_h) $(iminst_h)
  3114.  
  3115. icontext.$(OBJ): icontext.c $(GH)\
  3116.  $(gsstruct_h) $(gxalloc_h)\
  3117.  $(dstack_h) $(estack_h) $(ostack_h)\
  3118.  $(icontext_h) $(igstate_h) $(store_h)
  3119.  
  3120. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3121.   $(gp_h) \
  3122.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3123.   $(errors_h) $(estack_h) $(files_h) \
  3124.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3125.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3126.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3127.  
  3128. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3129.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3130.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3131.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3132.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3133.  $(main_h) $(oper_h) $(ostack_h)\
  3134.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3135.  
  3136. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3137.  $(gsstruct_h)\
  3138.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3139.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3140.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3141.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3142.     $(CCINT) interp.c
  3143.  
  3144. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3145.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3146.   $(dstack_h) $(estack_h) $(ostack_h)
  3147. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3148. # This file is part of Aladdin Ghostscript.
  3149. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3150. # or distributor accepts any responsibility for the consequences of using it,
  3151. # or for whether it serves any particular purpose or works at all, unless he
  3152. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3153. # License (the "License") for full details.
  3154. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3155. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3156. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3157. # under certain conditions described in the License.  Among other things, the
  3158. # License requires that the copyright notice and this notice be preserved on
  3159. # all copies.
  3160.  
  3161. # makefile for Independent JPEG Group library code.
  3162.  
  3163. # NOTE: This makefile is only known to work with the following versions
  3164. # of the IJG library: 6, 6a.
  3165. # As of May 11, 1996, version 6a is the current version.
  3166. #
  3167. # You can get the IJG library by Internet anonymous FTP from the following
  3168. # places:
  3169. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3170. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3171. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3172. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3173. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3174. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3175. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3176. # to be the master distribution site, so it may have a more up-to-date
  3177. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3178. # Ghostscript, so it will always have IJG library versions known to be
  3179. # compatible with Ghostscript.
  3180. #
  3181. # If the version number, and hence the subdirectory name, changes, you
  3182. # will probably want to change the definitions of JSRCDIR and possibly
  3183. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3184. # since that way you can use the IJG archive without change.
  3185. #
  3186. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3187. # compiling on a DesqView/X system, you should use the zip version of the
  3188. # IJG library, not the tar.gz version.
  3189.  
  3190. # Define the name of this makefile.
  3191. JPEG_MAK=jpeg.mak
  3192.  
  3193. # JSRCDIR is defined in the platform-specific makefile, not here,
  3194. # as the directory where the IJG library sources are stored.
  3195. #JSRCDIR=jpeg-6a
  3196. # JVERSION is defined in the platform-specific makefile, not here,
  3197. # as the IJG library major version number (currently "5" or "6").
  3198. #JVERSION=6
  3199.  
  3200. JSRC=$(JSRCDIR)$(D)
  3201. # CCCJ is defined in gs.mak.
  3202. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3203.  
  3204. # We keep all of the IJG code in a separate directory so as not to
  3205. # inadvertently mix it up with Aladdin Enterprises' own code.
  3206. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3207. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3208. # keep the error strings out of the automatic data segment in
  3209. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3210. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3211. # (This need will go away when IJG v6 is released.)
  3212.  
  3213. # Because this file is included after lib.mak, we can't use _h macros
  3214. # to express indirect dependencies; instead, we build the dependencies
  3215. # into the rules for copying the files.
  3216. jconfig_h=jconfig.h
  3217. jerror_h=jerror.h
  3218. jmorecfg_h=jmorecfg.h
  3219. jpeglib_h=jpeglib.h
  3220.  
  3221. jconfig.h: gsjconf.h $(std_h)
  3222.     $(CP_) gsjconf.h jconfig.h
  3223.  
  3224. jmorecfg.h: gsjmorec.h jmcorig.h
  3225.     $(CP_) gsjmorec.h jmorecfg.h
  3226.  
  3227. jmcorig.h: $(JSRC)jmorecfg.h
  3228.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3229.  
  3230. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3231.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3232.  
  3233. jlib5.h: gsjpglib.h
  3234.     $(CP_) gsjpglib.h jlib5.h
  3235.  
  3236. jlib6.h: $(JSRC)jpeglib.h
  3237.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3238.  
  3239. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3240. # regardless of the compiler's search rule, we must copy up all .c files,
  3241. # and all .h files that include either of these files, directly or
  3242. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3243. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3244. # Also, to avoid including the JSRCDIR directory name in our source files,
  3245. # we must also copy up any other .h files that our own code references.
  3246. # Currently, the only such .h files are jerror.h and jversion.h.
  3247.  
  3248. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3249.  
  3250. jinclude.h: $(JSRC)jinclude.h
  3251.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3252.  
  3253. #jpeglib.h: $(JSRC)jpeglib.h
  3254. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3255.  
  3256. jerror.h: $(JSRC)jerror.h
  3257.     $(CP_) $(JSRC)jerror.h jerror.h
  3258.  
  3259. jversion.h: $(JSRC)jversion.h
  3260.     $(CP_) $(JSRC)jversion.h jversion.h
  3261.  
  3262. # In order to avoid having to keep the dependency lists for the IJG code
  3263. # accurate, we simply make all of them depend on the only files that
  3264. # we are ever going to change, and on all the .h files that must be copied up.
  3265. # This is too conservative, but only hurts us if we are changing our own
  3266. # j*.h files, which happens only rarely during development.
  3267.  
  3268. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3269.  
  3270. # Code common to compression and decompression.
  3271.  
  3272. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3273. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3274.     $(SETMOD) jpegc $(jpegc_)
  3275.  
  3276. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3277.     $(CP_) $(JSRC)jcomapi.c .
  3278.     $(CCCJ) jcomapi.c
  3279.     $(RM_) jcomapi.c
  3280.  
  3281. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3282.     $(CP_) $(JSRC)jutils.c .
  3283.     $(CCCJ) jutils.c
  3284.     $(RM_) jutils.c
  3285.  
  3286. # Note that sjpegerr replaces jerror.
  3287. sjpegerr.$(OBJ): sjpegerr.c $(JDEP)
  3288.     $(CCCF) sjpegerr.c
  3289.  
  3290. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3291.     $(CP_) $(JSRC)jmemmgr.c .
  3292.     $(CCCJ) jmemmgr.c
  3293.     $(RM_) jmemmgr.c
  3294.  
  3295. # Encoding (compression) code.
  3296.  
  3297. jpege.dev: jpege$(JVERSION).dev
  3298.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3299.  
  3300. jpege5=jcapi.$(OBJ)
  3301. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3302.  
  3303. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3304. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3305. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3306.  
  3307. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3308.     $(SETMOD) jpege5 $(jpege5)
  3309.     $(ADDMOD) jpege5 -include jpegc
  3310.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3311.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3312.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3313.  
  3314. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3315.     $(SETMOD) jpege6 $(jpege6)
  3316.     $(ADDMOD) jpege6 -include jpegc
  3317.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3318.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3319.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3320.  
  3321. # jcapi.c is v5* only
  3322. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3323.     $(CP_) $(JSRC)jcapi.c .
  3324.     $(CCCJ) jcapi.c
  3325.     $(RM_) jcapi.c
  3326.   
  3327. # jcapimin.c is new in v6
  3328. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3329.     $(CP_) $(JSRC)jcapimin.c .
  3330.     $(CCCJ) jcapimin.c
  3331.     $(RM_) jcapimin.c
  3332.  
  3333. # jcapistd.c is new in v6
  3334. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3335.     $(CP_) $(JSRC)jcapistd.c .
  3336.     $(CCCJ) jcapistd.c
  3337.     $(RM_) jcapistd.c
  3338.  
  3339. # jcinit.c is new in v6
  3340. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3341.     $(CP_) $(JSRC)jcinit.c .
  3342.     $(CCCJ) jcinit.c
  3343.     $(RM_) jcinit.c
  3344.  
  3345. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3346.     $(CP_) $(JSRC)jccoefct.c .
  3347.     $(CCCJ) jccoefct.c
  3348.     $(RM_) jccoefct.c
  3349.  
  3350. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3351.     $(CP_) $(JSRC)jccolor.c .
  3352.     $(CCCJ) jccolor.c
  3353.     $(RM_) jccolor.c
  3354.  
  3355. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3356.     $(CP_) $(JSRC)jcdctmgr.c .
  3357.     $(CCCJ) jcdctmgr.c
  3358.     $(RM_) jcdctmgr.c
  3359.  
  3360. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3361.     $(CP_) $(JSRC)jchuff.c .
  3362.     $(CCCJ) jchuff.c
  3363.     $(RM_) jchuff.c
  3364.  
  3365. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3366.     $(CP_) $(JSRC)jcmainct.c .
  3367.     $(CCCJ) jcmainct.c
  3368.     $(RM_) jcmainct.c
  3369.  
  3370. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3371.     $(CP_) $(JSRC)jcmarker.c .
  3372.     $(CCCJ) jcmarker.c
  3373.     $(RM_) jcmarker.c
  3374.  
  3375. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3376.     $(CP_) $(JSRC)jcmaster.c .
  3377.     $(CCCJ) jcmaster.c
  3378.     $(RM_) jcmaster.c
  3379.  
  3380. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3381.     $(CP_) $(JSRC)jcparam.c .
  3382.     $(CCCJ) jcparam.c
  3383.     $(RM_) jcparam.c
  3384.  
  3385. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3386.     $(CP_) $(JSRC)jcprepct.c .
  3387.     $(CCCJ) jcprepct.c
  3388.     $(RM_) jcprepct.c
  3389.  
  3390. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3391.     $(CP_) $(JSRC)jcsample.c .
  3392.     $(CCCJ) jcsample.c
  3393.     $(RM_) jcsample.c
  3394.  
  3395. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3396.     $(CP_) $(JSRC)jfdctint.c .
  3397.     $(CCCJ) jfdctint.c
  3398.     $(RM_) jfdctint.c
  3399.  
  3400. # Decompression code
  3401.  
  3402. jpegd.dev: jpegd$(JVERSION).dev
  3403.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3404.  
  3405. jpegd5=jdapi.$(OBJ)
  3406. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3407.  
  3408. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3409. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3410. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3411.  
  3412. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3413.     $(SETMOD) jpegd5 $(jpegd5)
  3414.     $(ADDMOD) jpegd5 -include jpegc
  3415.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3416.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3417.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3418.  
  3419. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3420.     $(SETMOD) jpegd6 $(jpegd6)
  3421.     $(ADDMOD) jpegd6 -include jpegc
  3422.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3423.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3424.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3425.  
  3426. # jdapi.c is v5* only
  3427. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3428.     $(CP_) $(JSRC)jdapi.c .
  3429.     $(CCCJ) jdapi.c
  3430.     $(RM_) jdapi.c
  3431.  
  3432. # jdapimin.c is new in v6
  3433. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3434.     $(CP_) $(JSRC)jdapimin.c .
  3435.     $(CCCJ) jdapimin.c
  3436.     $(RM_) jdapimin.c
  3437.  
  3438. # jdapistd.c is new in v6
  3439. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3440.     $(CP_) $(JSRC)jdapistd.c .
  3441.     $(CCCJ) jdapistd.c
  3442.     $(RM_) jdapistd.c
  3443.  
  3444. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3445.     $(CP_) $(JSRC)jdcoefct.c .
  3446.     $(CCCJ) jdcoefct.c
  3447.     $(RM_) jdcoefct.c
  3448.  
  3449. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3450.     $(CP_) $(JSRC)jdcolor.c .
  3451.     $(CCCJ) jdcolor.c
  3452.     $(RM_) jdcolor.c
  3453.  
  3454. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3455.     $(CP_) $(JSRC)jddctmgr.c .
  3456.     $(CCCJ) jddctmgr.c
  3457.     $(RM_) jddctmgr.c
  3458.  
  3459. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3460.     $(CP_) $(JSRC)jdhuff.c .
  3461.     $(CCCJ) jdhuff.c
  3462.     $(RM_) jdhuff.c
  3463.  
  3464. # jdinput.c is new in v6
  3465. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3466.     $(CP_) $(JSRC)jdinput.c .
  3467.     $(CCCJ) jdinput.c
  3468.     $(RM_) jdinput.c
  3469.  
  3470. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3471.     $(CP_) $(JSRC)jdmainct.c .
  3472.     $(CCCJ) jdmainct.c
  3473.     $(RM_) jdmainct.c
  3474.  
  3475. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3476.     $(CP_) $(JSRC)jdmarker.c .
  3477.     $(CCCJ) jdmarker.c
  3478.     $(RM_) jdmarker.c
  3479.  
  3480. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3481.     $(CP_) $(JSRC)jdmaster.c .
  3482.     $(CCCJ) jdmaster.c
  3483.     $(RM_) jdmaster.c
  3484.  
  3485. # jdphuff.c is new in v6
  3486. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3487.     $(CP_) $(JSRC)jdphuff.c .
  3488.     $(CCCJ) jdphuff.c
  3489.     $(RM_) jdphuff.c
  3490.  
  3491. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3492.     $(CP_) $(JSRC)jdpostct.c .
  3493.     $(CCCJ) jdpostct.c
  3494.     $(RM_) jdpostct.c
  3495.  
  3496. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3497.     $(CP_) $(JSRC)jdsample.c .
  3498.     $(CCCJ) jdsample.c
  3499.     $(RM_) jdsample.c
  3500.  
  3501. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3502.     $(CP_) $(JSRC)jidctint.c .
  3503.     $(CCCJ) jidctint.c
  3504.     $(RM_) jidctint.c
  3505. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3506. # This file is part of Aladdin Ghostscript.
  3507. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3508. # or distributor accepts any responsibility for the consequences of using it,
  3509. # or for whether it serves any particular purpose or works at all, unless he
  3510. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3511. # License (the "License") for full details.
  3512. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3513. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3514. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3515. # under certain conditions described in the License.  Among other things, the
  3516. # License requires that the copyright notice and this notice be preserved on
  3517. # all copies.
  3518.  
  3519. # makefile for PNG (Portable Network Graphics) code.
  3520.  
  3521. # This partial makefile compiles the png library for use in the Ghostscript
  3522. # PNG drivers.  You can get the source code for this library from:
  3523. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3524. # The makefile is known to work with the following library versions:
  3525. # 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3526. # be inconsistent: if you have compilation problems, use an older version.
  3527. # Please see Ghostscript's `make.txt' file for instructions about how to
  3528. # unpack these archives.
  3529. #
  3530. # The specification for the PNG file format is available from:
  3531. #   http://www.group42.com/png.htm
  3532. #   http://www.w3.org/pub/WWW/TR/WD-png
  3533.  
  3534. # Define the name of this makefile.
  3535. LIBPNG_MAK=libpng.mak
  3536.  
  3537. # PSRCDIR is defined in the platform-specific makefile, not here,
  3538. # as the directory where the PNG library sources are stored.
  3539. #PSRCDIR=libpng
  3540. # PVERSION is defined in the platform-specific makefile, not here,
  3541. # as the libpng version number ("89", "90", "95", or "96").
  3542. #PVERSION=96
  3543.  
  3544. PSRC=$(PSRCDIR)$(D)
  3545. # CCCP is defined in gs.mak.
  3546. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3547.  
  3548. # We keep all of the PNG code in a separate directory so as not to
  3549. # inadvertently mix it up with Aladdin Enterprises' own code.
  3550. PDEP=$(AK)
  3551.  
  3552. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3553. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3554.  
  3555. # libpng modules
  3556.  
  3557. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3558.     $(CCCP) $(PSRC)png.c
  3559.  
  3560. # version 0.89 uses pngwio.c
  3561. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3562.     $(CCCP) $(PSRC)pngwio.c
  3563.  
  3564. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3565.     $(CCCP) $(PSRC)pngmem.c
  3566.  
  3567. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3568.     $(CCCP) $(PSRC)pngerror.c
  3569.  
  3570. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3571.     $(CCCP) $(PSRC)pngtrans.c
  3572.  
  3573. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3574.     $(CCCP) $(PSRC)pngwrite.c
  3575.  
  3576. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3577.     $(CCCP) $(PSRC)pngwtran.c
  3578.  
  3579. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3580.     $(CCCP) $(PSRC)pngwutil.c
  3581.  
  3582. # Define the version of libpng.dev that we are actually using.
  3583. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3584.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3585.  
  3586. # Define the shared version of libpng.
  3587. # Note that it requires libz, which must be searched *after* libpng.
  3588. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE) zlibe.dev
  3589.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3590.     $(ADDMOD) libpng_1 -include zlibe
  3591.  
  3592. # Define the non-shared version of libpng.
  3593. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3594.  zlibe.dev libpng$(PVERSION).dev
  3595.     $(SETMOD) libpng_0 $(png_1)
  3596.     $(ADDMOD) libpng_0 $(png_2)
  3597.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3598.  
  3599. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3600.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3601.  
  3602. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3603.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3604.  
  3605. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3606.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3607.  
  3608. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3609.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3610. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3611. # This file is part of Aladdin Ghostscript.
  3612. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3613. # or distributor accepts any responsibility for the consequences of using it,
  3614. # or for whether it serves any particular purpose or works at all, unless he
  3615. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3616. # License (the "License") for full details.
  3617. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3618. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3619. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3620. # under certain conditions described in the License.  Among other things, the
  3621. # License requires that the copyright notice and this notice be preserved on
  3622. # all copies.
  3623.  
  3624. # makefile for zlib library code.
  3625.  
  3626. # This partial makefile compiles the zlib library for use in Ghostscript.
  3627. # You can get the source code for this library from:
  3628. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3629. #        or zlib-1.0.4.tar.gz
  3630. # Please see Ghostscript's `make.txt' file for instructions about how to
  3631. # unpack these archives.
  3632.  
  3633. # Define the name of this makefile.
  3634. ZLIB_MAK=zlib.mak
  3635.  
  3636. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3637. # as the directory where the zlib sources are stored.
  3638. #ZSRCDIR=zlib
  3639. ZSRC=$(ZSRCDIR)$(D)
  3640. # We would like to define
  3641. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3642. # but the Watcom C compiler has strange undocumented restrictions on what can
  3643. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3644. # (in gs.mak):
  3645. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3646. # and handle the definition of verbose in a different, more awkward way.
  3647.  
  3648. # We keep all of the zlib code in a separate directory so as not to
  3649. # inadvertently mix it up with Aladdin Enterprises' own code.
  3650. ZDEP=$(AK)
  3651.  
  3652. # Contrary to what some portability bigots assert as fact, C compilers are
  3653. # not consistent about where they start searching for #included files:
  3654. # some always start by looking in the same directory as the .c file being
  3655. # compiled, before using the search path specified with -I on the command
  3656. # line, while others do not do this.  For this reason, we must explicitly
  3657. # copy and then delete all the .c files, because they need to obtain our
  3658. # modified version of zutil.h.  We must also copy all header files that
  3659. # reference zutil.h directly or indirectly.
  3660.  
  3661. # Code common to compression and decompression.
  3662.  
  3663. zlibc_=zutil.$(OBJ)
  3664. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3665.     $(SETMOD) zlibc $(zlibc_)
  3666.  
  3667. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3668.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3669.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3670.  
  3671. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3672.     $(CP_) $(ZSRC)zutil.c .
  3673.     $(CCCZ) zutil.c
  3674.     $(RM_) zutil.c
  3675.  
  3676. # Encoding (compression) code.
  3677.  
  3678. deflate.h: $(ZSRC)deflate.h zutil.h
  3679.     $(CP_) $(ZSRC)deflate.h .
  3680.  
  3681. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3682.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3683.  
  3684. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3685.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3686.  
  3687. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3688. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3689.     $(SETMOD) zlibe_0 $(zlibe_)
  3690.     $(ADDMOD) zlibe_0 -include zlibc
  3691.  
  3692. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3693.     $(CP_) $(ZSRC)adler32.c .
  3694.     $(CCCZ) adler32.c
  3695.     $(RM_) adler32.c
  3696.  
  3697. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3698.     $(CP_) $(ZSRC)deflate.c .
  3699.     $(CCCZ) deflate.c
  3700.     $(RM_) deflate.c
  3701.  
  3702. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3703.     $(CP_) $(ZSRC)trees.c .
  3704.     $(CCCZ) trees.c
  3705.     $(RM_) trees.c
  3706.  
  3707. # The zlib filters per se don't need crc32, but libpng versions starting
  3708. # with 0.90 do.
  3709.  
  3710. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3711.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3712.  
  3713. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3714.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3715.  
  3716. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3717.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3718.  
  3719. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3720.     $(CP_) $(ZSRC)crc32.c .
  3721.     $(CCCZ) crc32.c
  3722.     $(RM_) crc32.c
  3723.  
  3724. # Decoding (decompression) code.
  3725.  
  3726. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3727.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3728.  
  3729. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3730.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3731.  
  3732. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3733. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3734. zlibd_ = $(zlibd1_) $(zlibd2_)
  3735. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3736.     $(SETMOD) zlibd_0 $(zlibd1_)
  3737.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3738.     $(ADDMOD) zlibd_0 -include zlibc
  3739.  
  3740. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3741.     $(CP_) $(ZSRC)infblock.c .
  3742.     $(CCCZ) infblock.c
  3743.     $(RM_) infblock.c
  3744.  
  3745. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3746.     $(CP_) $(ZSRC)infcodes.c .
  3747.     $(CCCZ) infcodes.c
  3748.     $(RM_) infcodes.c
  3749.  
  3750. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3751.     $(CP_) $(ZSRC)inffast.c .
  3752.     $(CCCZ) inffast.c
  3753.     $(RM_) inffast.c
  3754.  
  3755. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3756.     $(CP_) $(ZSRC)inflate.c .
  3757.     $(CCCZ) inflate.c
  3758.     $(RM_) inflate.c
  3759.  
  3760. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3761.     $(CP_) $(ZSRC)inftrees.c .
  3762.     $(CCCZ) inftrees.c
  3763.     $(RM_) inftrees.c
  3764.  
  3765. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3766.     $(CP_) $(ZSRC)infutil.c .
  3767.     $(CCCZ) infutil.c
  3768.     $(RM_) infutil.c
  3769. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3770. # This file is part of Aladdin Ghostscript.
  3771. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3772. # or distributor accepts any responsibility for the consequences of using it,
  3773. # or for whether it serves any particular purpose or works at all, unless he
  3774. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3775. # License (the "License") for full details.
  3776. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3777. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3778. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3779. # under certain conditions described in the License.  Among other things, the
  3780. # License requires that the copyright notice and this notice be preserved on
  3781. # all copies.
  3782.  
  3783. # makefile for device drivers.
  3784.  
  3785. # Define the name of this makefile.
  3786. DEVS_MAK=devs.mak
  3787.  
  3788. ###### --------------------------- Catalog -------------------------- ######
  3789.  
  3790. # It is possible to build configurations with an arbitrary collection of
  3791. # device drivers, although some drivers are supported only on a subset
  3792. # of the target platforms.  The currently available drivers are:
  3793.  
  3794. # MS-DOS displays (note: not usable with Desqview/X):
  3795. #   MS-DOS EGA and VGA:
  3796. #    ega    EGA (640x350, 16-color)
  3797. #    vga    VGA (640x480, 16-color)
  3798. #   MS-DOS SuperVGA:
  3799. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3800. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3801. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3802. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3803. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3804. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3805. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3806. #   ****** compiler or executable.
  3807. #    vesa    SuperVGA with VESA standard API driver
  3808. #   MS-DOS other:
  3809. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3810. # *    herc    Hercules Graphics display   [MS-DOS only]
  3811. # *    pe    Private Eye display
  3812. # Other displays:
  3813. #   MS Windows:
  3814. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3815. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3816. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3817. #   OS/2:
  3818. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3819. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3820. # *    os2prn    OS/2 printer                [OS/2 only]
  3821. #   Unix and VMS:
  3822. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3823. #   ****** edit the definition of EGAVGA below.
  3824. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3825. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3826. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3827. # *    sunview  SunView window system   [SunOS only]
  3828. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3829. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3830. #    x11alpha  X Windows masquerading as a device with alpha capability
  3831. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3832. #    x11gray2  X Windows as a 2-bit gray-scale device
  3833. #    x11mono  X Windows masquerading as a black-and-white device
  3834. #   Platform-independent:
  3835. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3836. # Printers:
  3837. # *    ap3250    Epson AP3250 printer
  3838. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3839. #    bj10e    Canon BubbleJet BJ10e
  3840. # *    bj200    Canon BubbleJet BJ200
  3841. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3842. #               also good for Apple printers like the StyleWriter 2x00
  3843. # *    bjc800   Canon Color BubbleJet BJC-800
  3844. # *     ccr     CalComp Raster format
  3845. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3846. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3847. #        high-quality color (Floyd-Steinberg) dithering;
  3848. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3849. # *    cdjmono  H-P DeskJet 500C printing black only;
  3850. #        also good for DeskJet 510, 520, and 540C (black only)
  3851. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3852. # *    cdj550    H-P DeskJet 550C/560C
  3853. # *    cp50    Mitsubishi CP50 color printer
  3854. # *    declj250  alternate DEC LJ250 driver
  3855. # +    deskjet  H-P DeskJet and DeskJet Plus
  3856. #    djet500  H-P DeskJet 500
  3857. # *    djet500c  H-P DeskJet 500C alternate driver
  3858. #        (does not work on 550C or 560C)
  3859. # *    dnj650c  H-P DesignJet 650C
  3860. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3861. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3862. #        (intermediate resolution)
  3863. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3864. #        (triple resolution)
  3865. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3866. # *    ibmpro  IBM 9-pin Proprinter
  3867. # *    imagen    Imagen ImPress printers
  3868. # *    iwhi    Apple Imagewriter in high-resolution mode
  3869. # *    iwlo    Apple Imagewriter in low-resolution mode
  3870. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3871. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3872. # +    laserjet  H-P LaserJet
  3873. # *    la50    DEC LA50 printer
  3874. # *    la70    DEC LA70 printer
  3875. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3876. # *    la75    DEC LA75 printer
  3877. # *    la75plus DEC LA75plus printer
  3878. # *    lbp8    Canon LBP-8II laser printer
  3879. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3880. # *    ln03    DEC LN03 printer
  3881. # *    lj250    DEC LJ250 Companion color printer
  3882. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3883. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3884. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3885. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3886. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3887. # +    ljetplus  H-P LaserJet Plus
  3888. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3889. #        see below for restrictions & advice
  3890. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3891. #        see below for restrictions & advice
  3892. # *    lp2563    H-P 2563B line printer
  3893. # *    lp8000    Epson LP-8000 laser printer
  3894. # *     lq850   Epson LQ850 printer at 360 x 360 DPI resolution;
  3895. #               also good for Canon BJ300 with LQ850 emulation
  3896. # *    m8510    C.Itoh M8510 printer
  3897. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3898. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3899. # *    oce9050  OCE 9050 printer
  3900. # *    oki182    Okidata MicroLine 182
  3901. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3902. # *    paintjet  alternate H-P PaintJet color printer
  3903. # *    pj    H-P PaintJet XL driver 
  3904. # *    pjetxl    alternate H-P PaintJet XL driver
  3905. # *    pjxl    H-P PaintJet XL color printer
  3906. # *    pjxl300  H-P PaintJet XL300 color printer;
  3907. #        also good for PaintJet 1200C
  3908. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3909. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3910. # *    r4081    Ricoh 4081 laser printer
  3911. # *    sj48    StarJet 48 inkjet printer
  3912. # *    sparc    SPARCprinter
  3913. # *    st800    Epson Stylus 800 printer
  3914. # *    stcolor    Epson Stylus Color
  3915. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3916. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3917. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3918. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3919. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3920. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3921. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3922. # Fax systems:
  3923. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3924. # *    dfaxlow  DigiFAX low (normal) resolution
  3925. # Fax file format:
  3926. #   ****** NOTE: all of these drivers adjust the page size to match
  3927. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3928. #   ****** A4, or B4).
  3929. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3930. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3931. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3932. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3933. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3934. #    tiffg32d  TIFF Group 3 2-D fax
  3935. #    tiffg4    TIFF Group 4 fax
  3936. # High-level file formats:
  3937. #    epswrite  EPS output (like PostScript Distillery)
  3938. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3939. #    pswrite  PostScript output (like PostScript Distillery)
  3940. #    pxlmono  Black-and-white PCL XL
  3941. #    pxlcolor  Color PCL XL
  3942. # Other raster file formats and devices:
  3943. #    bit    Plain bits, monochrome
  3944. #    bitrgb    Plain bits, RGB
  3945. #    bitcmyk  Plain bits, CMYK
  3946. #    bmpmono    Monochrome MS Windows .BMP file format
  3947. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3948. #    bmp256    8-bit (256-color) .BMP file format
  3949. #    bmp16m    24-bit .BMP file format
  3950. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3951. #    cgm8    8-bit (256-color) CGM -- DITTO
  3952. #    cgm24    24-bit color CGM -- DITTO
  3953. # *    cif    CIF file format for VLSI
  3954. #    jpeg    JPEG format, RGB output
  3955. #    jpeggray  JPEG format, gray output
  3956. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3957. # *    mgrmono  1-bit monochrome MGR devices
  3958. # *    mgrgray2  2-bit gray scale MGR devices
  3959. # *    mgrgray4  4-bit gray scale MGR devices
  3960. # *    mgrgray8  8-bit gray scale MGR devices
  3961. # *    mgr4    4-bit (VGA) color MGR devices
  3962. # *    mgr8    8-bit color MGR devices
  3963. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  3964. #    pcxgray    PCX file format, 8-bit gray scale
  3965. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  3966. #    pcx256    PCX file format, 8-bit chunky color
  3967. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  3968. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  3969. #    pbm    Portable Bitmap (plain format)
  3970. #    pbmraw    Portable Bitmap (raw format)
  3971. #    pgm    Portable Graymap (plain format)
  3972. #    pgmraw    Portable Graymap (raw format)
  3973. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  3974. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  3975. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  3976. #         if possible
  3977. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  3978. #         if possible
  3979. #    ppm    Portable Pixmap (plain format) (RGB)
  3980. #    ppmraw    Portable Pixmap (raw format) (RGB)
  3981. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  3982. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  3983. #    pngmono    Monochrome Portable Network Graphics (PNG)
  3984. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  3985. #    png16    4-bit color Portable Network Graphics (PNG)
  3986. #    png256    8-bit color Portable Network Graphics (PNG)
  3987. #    png16m    24-bit color Portable Network Graphics (PNG)
  3988. #    psmono    PostScript (Level 1) monochrome image
  3989. #    psgray    PostScript (Level 1) 8-bit gray image
  3990. #    sgirgb    SGI RGB pixmap format
  3991. #    tiff12nc  TIFF 12-bit RGB, no compression
  3992. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  3993. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  3994. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  3995.  
  3996. # User-contributed drivers marked with * require hardware or software
  3997. # that is not available to Aladdin Enterprises.  Please contact the
  3998. # original contributors, not Aladdin Enterprises, if you have questions.
  3999. # Contact information appears in the driver entry below.
  4000. #
  4001. # Drivers marked with a + are maintained by Aladdin Enterprises with
  4002. # the assistance of users, since Aladdin Enterprises doesn't have access to
  4003. # the hardware for these either.
  4004.  
  4005. # If you add drivers, it would be nice if you kept each list
  4006. # in alphabetical order.
  4007.  
  4008. ###### ----------------------- End of catalog ----------------------- ######
  4009.  
  4010. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  4011. # that should be included in a given configuration.  By convention, these
  4012. # are used as follows.  Each of these must be limited to about 10 devices
  4013. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4014. #    DEVICE_DEVS - the default device, and any display devices.
  4015. #    DEVICE_DEVS1 - additional display devices if needed.
  4016. #    DEVICE_DEVS2 - dot matrix printers.
  4017. #    DEVICE_DEVS3 - H-P monochrome printers.
  4018. #    DEVICE_DEVS4 - H-P color printers.
  4019. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4020. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4021. #    DEVICE_DEVS7 - fax file formats.
  4022. #    DEVICE_DEVS8 - PCX file formats.
  4023. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4024. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4025. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4026. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4027. #    DEVICE_DEVS13 - PNG file formats.
  4028. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4029. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4030. # Feel free to disregard this convention if it gets in your way.
  4031.  
  4032. # If you want to add a new device driver, the examples below should be
  4033. # enough of a guide to the correct form for the makefile rules.
  4034. # Note that all drivers other than displays must include page.dev in their
  4035. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4036.  
  4037. # All device drivers depend on the following:
  4038. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4039.  
  4040. # "Printer" drivers depend on the following:
  4041. PDEVH=$(AK) $(gdevprn_h)
  4042.  
  4043. # Define the header files for device drivers.  Every header file used by
  4044. # more than one device driver family must be listed here.
  4045. gdev8bcm_h=gdev8bcm.h
  4046. gdevpccm_h=gdevpccm.h
  4047. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4048. gdevpcl_h=gdevpcl.h
  4049. gdevsvga_h=gdevsvga.h
  4050. gdevx_h=gdevx.h
  4051.  
  4052. ###### ----------------------- Device support ----------------------- ######
  4053.  
  4054. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4055. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4056.  
  4057. # Implement dynamic color management for 8-bit mapped color displays.
  4058. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4059.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4060.  
  4061. ###### ------------------- MS-DOS display devices ------------------- ######
  4062.  
  4063. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4064. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4065. # and a special driver for the S3 chip.
  4066.  
  4067. # PC display color mapping
  4068. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4069.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4070.  
  4071. ### ----------------------- EGA and VGA displays ----------------------- ###
  4072.  
  4073. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4074. # or an empty string.
  4075.  
  4076. gdevegaa.$(OBJ): gdevegaa.asm
  4077.  
  4078. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4079. # change gdevevga to gdevsco in the following line.  Also, since
  4080. # SCO's /bin/as does not support the "out" instructions, you must build
  4081. # the gnu assembler and have it on your path as "as".
  4082. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4083. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4084.  
  4085. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4086.     $(CCD) gdevevga.c
  4087.  
  4088. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4089.  
  4090. # Common code for MS-DOS and SCO.
  4091. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4092.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4093.     $(CCD) gdevpcfb.c
  4094.  
  4095. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4096. # 16-color mode can share the same code; see the next section below.
  4097.  
  4098. ega.dev: $(EGAVGA)
  4099.     $(SETDEV) ega $(EGAVGA)
  4100.  
  4101. vga.dev: $(EGAVGA)
  4102.     $(SETDEV) vga $(EGAVGA)
  4103.  
  4104. ### ------------------------- SuperVGA displays ------------------------ ###
  4105.  
  4106. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4107. # glorified VGA's, so we can handle them all with a single driver.
  4108. # The way to select them on the command line is with
  4109. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4110. # where NNN is the display mode in decimal.  See use.txt for the modes
  4111. # for some popular display chipsets.
  4112.  
  4113. svga16.dev: $(EGAVGA)
  4114.     $(SETDEV) svga16 $(EGAVGA)
  4115.  
  4116. # More capable SuperVGAs have a wide variety of slightly differing
  4117. # interfaces, so we need a separate driver for each one.
  4118.  
  4119. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4120.  
  4121. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4122.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4123.     $(CCD) gdevsvga.c
  4124.  
  4125. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4126. # Trident, Tseng ET3000/4000, and VESA.
  4127.  
  4128. ali.dev: $(SVGA)
  4129.     $(SETDEV) ali $(SVGA)
  4130.  
  4131. atiw.dev: $(SVGA)
  4132.     $(SETDEV) atiw $(SVGA)
  4133.  
  4134. tseng.dev: $(SVGA)
  4135.     $(SETDEV) tseng $(SVGA)
  4136.  
  4137. tvga.dev: $(SVGA)
  4138.     $(SETDEV) tvga $(SVGA)
  4139.  
  4140. vesa.dev: $(SVGA)
  4141.     $(SETDEV) vesa $(SVGA)
  4142.  
  4143. # The S3 driver doesn't share much code with the others.
  4144.  
  4145. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4146. s3vga.dev: $(SVGA) $(s3vga_)
  4147.     $(SETDEV) s3vga $(SVGA)
  4148.     $(ADDMOD) s3vga -obj $(s3vga_)
  4149.  
  4150. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4151.     $(CCD) gdevs3ga.c
  4152.  
  4153. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4154.  
  4155. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4156.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4157.  
  4158. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4159.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4160.  
  4161. # Include egavgaf.$(OBJ) for debugging only.
  4162. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4163. bgi.dev: $(bgi_)
  4164.     $(SETDEV) bgi $(bgi_)
  4165.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4166.  
  4167. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4168.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4169.  
  4170. ### ------------------- The Hercules Graphics display ------------------- ###
  4171.  
  4172. herc_=gdevherc.$(OBJ)
  4173. herc.dev: $(herc_)
  4174.     $(SETDEV) herc $(herc_)
  4175.  
  4176. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4177.     $(CCC) gdevherc.c
  4178.  
  4179. ### ---------------------- The Private Eye display ---------------------- ###
  4180. ### Note: this driver was contributed by a user:                          ###
  4181. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4182.  
  4183. pe_=gdevpe.$(OBJ)
  4184. pe.dev: $(pe_)
  4185.     $(SETDEV) pe $(pe_)
  4186.  
  4187. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4188.  
  4189. ###### ----------------------- Other displays ------------------------ ######
  4190.  
  4191. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4192.  
  4193. gsdll_h=gsdll.h
  4194.  
  4195. gdevmswn_h=gdevmswn.h $(GDEV)\
  4196.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4197.  gp_mswin.h
  4198.  
  4199. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4200.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4201.  
  4202. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4203.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4204.  
  4205. # An implementation using a DIB filled by an image device.
  4206. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4207.  
  4208. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4209.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4210. mswindll.dev: $(mswindll_)
  4211.     $(SETDEV) mswindll $(mswindll_)
  4212.  
  4213. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4214.  
  4215. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4216. mswinprn.dev: $(mswinprn_)
  4217.     $(SETDEV) mswinprn $(mswinprn_)
  4218.  
  4219. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4220.  
  4221. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4222.  
  4223. mswinpr2_=gdevwpr2.$(OBJ)
  4224. mswinpr2.dev: $(mswinpr2_) page.dev
  4225.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4226.  
  4227. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4228.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4229.  
  4230. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4231.  
  4232. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4233. os2pm.dev: $(os2pm_)
  4234.     $(SETDEV) os2pm $(os2pm_)
  4235.  
  4236. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4237. os2dll.dev: $(os2dll_)
  4238.     $(SETDEV) os2dll $(os2dll_)
  4239.  
  4240. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4241.  $(gp_h) $(gpcheck_h)\
  4242.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4243.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4244.  $(gdevpccm_h) gdevpm.h
  4245.  
  4246. ### --------------------------- The OS/2 printer ------------------------ ###
  4247.  
  4248. os2prn_=gdevos2p.$(OBJ)
  4249. os2prn.dev: $(os2prn_) page.dev
  4250.     $(SETPDEV) os2prn $(os2prn_)
  4251.  
  4252. os2prn.$(OBJ): os2prn.c $(gp_h)
  4253.  
  4254. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4255. ### Note: this driver was contributed by a user: please contact           ###
  4256. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4257.  
  4258. att3b1_=gdev3b1.$(OBJ)
  4259. att3b1.dev: $(att3b1_)
  4260.     $(SETDEV) att3b1 $(att3b1_)
  4261.  
  4262. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4263.  
  4264. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4265. ### Note: these drivers were contributed by users.                        ###
  4266. ### For questions about the lvga256 driver, please contact                ###
  4267. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4268. ### For questions about the vgalib driver, please contact                 ###
  4269. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4270.  
  4271. lvga256_=gdevl256.$(OBJ)
  4272. lvga256.dev: $(lvga256_)
  4273.     $(SETDEV) lvga256 $(lvga256_)
  4274.     $(ADDMOD) lvga256 -lib vga vgagl
  4275.  
  4276. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4277.  
  4278. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4279. vgalib.dev: $(vgalib_)
  4280.     $(SETDEV) vgalib $(vgalib_)
  4281.     $(ADDMOD) vgalib -lib vga
  4282.  
  4283. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4284.  
  4285. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4286. ### Note: this driver was contributed by a user: please contact          ###
  4287. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4288.  
  4289. # This is implemented as a 'printer' device.
  4290. sonyfb_=gdevsnfb.$(OBJ)
  4291. sonyfb.dev: $(sonyfb_) page.dev
  4292.     $(SETPDEV) sonyfb $(sonyfb_)
  4293.  
  4294. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4295.  
  4296. ### ------------------------ The SunView device ------------------------ ###
  4297. ### Note: this driver is maintained by a user: if you have questions,    ###
  4298. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4299.  
  4300. sunview_=gdevsun.$(OBJ)
  4301. sunview.dev: $(sunview_)
  4302.     $(SETDEV) sunview $(sunview_)
  4303.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4304.  
  4305. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4306.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4307.  
  4308. ### -------------------------- The X11 device -------------------------- ###
  4309.  
  4310. # Aladdin Enterprises does not support Ghostview.  For more information
  4311. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4312.  
  4313. # See the main makefile for the definition of XLIBS.
  4314. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4315. x11.dev: $(x11_)
  4316.     $(SETDEV) x11 $(x11_)
  4317.     $(ADDMOD) x11 -lib $(XLIBS)
  4318.  
  4319. # See the main makefile for the definition of XINCLUDE.
  4320. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4321. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4322.     $(CCC) $(XINCLUDE) gdevx.c
  4323.  
  4324. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4325.     $(CCC) $(XINCLUDE) gdevxini.c
  4326.  
  4327. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4328.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4329.     $(CCC) $(XINCLUDE) gdevxxf.c
  4330.  
  4331. # Alternate X11-based devices to help debug other drivers.
  4332. # x11alpha pretends to have 4 bits of alpha channel.
  4333. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4334. # x11gray2 pretends to be a 2-bit gray-scale device.
  4335. # x11mono pretends to be a black-and-white device.
  4336. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4337. x11alpha.dev: $(x11alt_)
  4338.     $(SETDEV) x11alpha $(x11alt_)
  4339.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4340.  
  4341. x11cmyk.dev: $(x11alt_)
  4342.     $(SETDEV) x11cmyk $(x11alt_)
  4343.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4344.  
  4345. x11gray2.dev: $(x11alt_)
  4346.     $(SETDEV) x11gray2 $(x11alt_)
  4347.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4348.  
  4349. x11mono.dev: $(x11alt_)
  4350.     $(SETDEV) x11mono $(x11alt_)
  4351.     $(ADDMOD) x11mono -lib $(XLIBS)
  4352.  
  4353. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4354.     $(CCC) $(XINCLUDE) gdevxalt.c
  4355.  
  4356. ### ------------------------- DEC sixel displays ------------------------ ###
  4357. ### Note: this driver was contributed by a user: please contact           ###
  4358. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4359.  
  4360. # This is a "printer" device, but it probably shouldn't be.
  4361. # I don't know why the implementor chose to do it this way.
  4362. sxlcrt_=gdevln03.$(OBJ)
  4363. sxlcrt.dev: $(sxlcrt_) page.dev
  4364.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4365.  
  4366. ###### --------------- Memory-buffered printer devices --------------- ######
  4367.  
  4368. ### --------------------- The Apple printer devices --------------------- ###
  4369. ### Note: these drivers were contributed by users.                        ###
  4370. ###   If you have questions about the DMP driver, please contact          ###
  4371. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4372. ###   If you have questions about the Imagewriter drivers, please contact ###
  4373. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4374. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4375. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4376.  
  4377. appledmp_=gdevadmp.$(OBJ)
  4378.  
  4379. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4380.  
  4381. appledmp.dev: $(appledmp_) page.dev
  4382.     $(SETPDEV) appledmp $(appledmp_)
  4383.  
  4384. iwhi.dev: $(appledmp_) page.dev
  4385.     $(SETPDEV) iwhi $(appledmp_)
  4386.  
  4387. iwlo.dev: $(appledmp_) page.dev
  4388.     $(SETPDEV) iwlo $(appledmp_)
  4389.  
  4390. iwlq.dev: $(appledmp_) page.dev
  4391.     $(SETPDEV) iwlq $(appledmp_)
  4392.  
  4393. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4394.  
  4395. bj10e_=gdevbj10.$(OBJ)
  4396.  
  4397. bj10e.dev: $(bj10e_) page.dev
  4398.     $(SETPDEV) bj10e $(bj10e_)
  4399.  
  4400. bj200.dev: $(bj10e_) page.dev
  4401.     $(SETPDEV) bj200 $(bj10e_)
  4402.  
  4403. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4404.  
  4405. ### ------------- The CalComp Raster Format ----------------------------- ###
  4406. ### Note: this driver was contributed by a user: please contact           ###
  4407. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4408. ###       questions.                                                      ###
  4409.  
  4410. ccr_=gdevccr.$(OBJ)
  4411. ccr.dev: $(ccr_) page.dev
  4412.     $(SETPDEV) ccr $(ccr_)
  4413.  
  4414. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4415.  
  4416. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4417.  
  4418. ### These are essentially the same device.
  4419. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4420. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4421. ### Note that the lj4dith driver is included with the H-P color printer
  4422. ###   drivers below.
  4423.  
  4424. HPPCL=gdevpcl.$(OBJ)
  4425. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4426.  
  4427. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4428.  
  4429. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4430.  
  4431. deskjet.dev: $(HPMONO) page.dev
  4432.     $(SETPDEV) deskjet $(HPMONO)
  4433.  
  4434. djet500.dev: $(HPMONO) page.dev
  4435.     $(SETPDEV) djet500 $(HPMONO)
  4436.  
  4437. laserjet.dev: $(HPMONO) page.dev
  4438.     $(SETPDEV) laserjet $(HPMONO)
  4439.  
  4440. ljetplus.dev: $(HPMONO) page.dev
  4441.     $(SETPDEV) ljetplus $(HPMONO)
  4442.  
  4443. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4444. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4445.  
  4446. ljet2p.dev: $(HPMONO) page.dev
  4447.     $(SETPDEV) ljet2p $(HPMONO)
  4448.  
  4449. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4450. ### IIIp, IIId, IIIsi.
  4451.  
  4452. ljet3.dev: $(HPMONO) page.dev
  4453.     $(SETPDEV) ljet3 $(HPMONO)
  4454.  
  4455. ### Selecting ljet3d also provides duplex printing capability.
  4456.  
  4457. ljet3d.dev: $(HPMONO) page.dev
  4458.     $(SETPDEV) ljet3d $(HPMONO)
  4459.  
  4460. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4461.  
  4462. ljet4.dev: $(HPMONO) page.dev
  4463.     $(SETPDEV) ljet4 $(HPMONO)
  4464.  
  4465. lp2563.dev: $(HPMONO) page.dev
  4466.     $(SETPDEV) lp2563 $(HPMONO)
  4467.  
  4468. oce9050.dev: $(HPMONO) page.dev
  4469.     $(SETPDEV) oce9050 $(HPMONO)
  4470.  
  4471. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4472.  
  4473. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4474. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4475. ### them:
  4476. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4477. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4478. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4479. ###    driver, which often produces much more compact output.
  4480.  
  4481. gdevpxat_h=gdevpxat.h
  4482. gdevpxen_h=gdevpxen.h
  4483. gdevpxop_h=gdevpxop.h
  4484.  
  4485. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4486. lj5mono.dev: $(ljet5_) page.dev
  4487.     $(SETPDEV) lj5mono $(ljet5_)
  4488.  
  4489. lj5gray.dev: $(ljet5_) page.dev
  4490.     $(SETPDEV) lj5gray $(ljet5_)
  4491.  
  4492. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4493.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4494.  
  4495. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4496. ### Note: there are two different 500C drivers, both contributed by users.###
  4497. ###   If you have questions about the djet500c driver,                    ###
  4498. ###       please contact AKayser@et.tudelft.nl.                           ###
  4499. ###   If you have questions about the cdj* drivers,                       ###
  4500. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4501. ###   If you have questions about the dnj560c driver,                     ###
  4502. ###       please contact koert@zen.cais.com.                              ###
  4503. ###   If you have questions about the lj4dith driver,                     ###
  4504. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4505. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4506. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4507.  
  4508. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4509.  
  4510. cdeskjet.dev: $(cdeskjet_) page.dev
  4511.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4512.  
  4513. cdjcolor.dev: $(cdeskjet_) page.dev
  4514.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4515.  
  4516. cdjmono.dev: $(cdeskjet_) page.dev
  4517.     $(SETPDEV) cdjmono $(cdeskjet_)
  4518.  
  4519. cdj500.dev: $(cdeskjet_) page.dev
  4520.     $(SETPDEV) cdj500 $(cdeskjet_)
  4521.  
  4522. cdj550.dev: $(cdeskjet_) page.dev
  4523.     $(SETPDEV) cdj550 $(cdeskjet_)
  4524.  
  4525. declj250.dev: $(cdeskjet_) page.dev
  4526.     $(SETPDEV) declj250 $(cdeskjet_)
  4527.  
  4528. dnj650c.dev: $(cdeskjet_) page.dev
  4529.     $(SETPDEV) dnj650c $(cdeskjet_)
  4530.  
  4531. lj4dith.dev: $(cdeskjet_) page.dev
  4532.     $(SETPDEV) lj4dith $(cdeskjet_)
  4533.  
  4534. pj.dev: $(cdeskjet_) page.dev
  4535.     $(SETPDEV) pj $(cdeskjet_)
  4536.  
  4537. pjxl.dev: $(cdeskjet_) page.dev
  4538.     $(SETPDEV) pjxl $(cdeskjet_)
  4539.  
  4540. pjxl300.dev: $(cdeskjet_) page.dev
  4541.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4542.  
  4543. # Note: the BJC600 driver also works for the BJC4000.
  4544. bjc600.dev: $(cdeskjet_) page.dev
  4545.     $(SETPDEV) bjc600 $(cdeskjet_)
  4546.  
  4547. bjc800.dev: $(cdeskjet_) page.dev
  4548.     $(SETPDEV) bjc800 $(cdeskjet_)
  4549.  
  4550. escp.dev: $(cdeskjet_) page.dev
  4551.     $(SETPDEV) escp $(cdeskjet_)
  4552.  
  4553. # NB: you can also customise the build if required, using
  4554. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4555. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4556. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4557.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4558.  $(gdevpcl_h)
  4559.  
  4560. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4561. djet500c.dev: $(djet500c_) page.dev
  4562.     $(SETPDEV) djet500c $(djet500c_)
  4563.  
  4564. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4565.  
  4566. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4567. ### Note: this driver was contributed by a user: please contact           ###
  4568. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4569.  
  4570. cp50_=gdevcp50.$(OBJ)
  4571. cp50.dev: $(cp50_) page.dev
  4572.     $(SETPDEV) cp50 $(cp50_)
  4573.  
  4574. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4575.  
  4576. ### ----------------- The generic Epson printer device ----------------- ###
  4577. ### Note: most of this code was contributed by users.  Please contact    ###
  4578. ###       the following people if you have questions:                    ###
  4579. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4580. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4581. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4582.  
  4583. epson_=gdevepsn.$(OBJ)
  4584.  
  4585. epson.dev: $(epson_) page.dev
  4586.     $(SETPDEV) epson $(epson_)
  4587.  
  4588. eps9mid.dev: $(epson_) page.dev
  4589.     $(SETPDEV) eps9mid $(epson_)
  4590.  
  4591. eps9high.dev: $(epson_) page.dev
  4592.     $(SETPDEV) eps9high $(epson_)
  4593.  
  4594. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4595.  
  4596. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4597.  
  4598. ibmpro.dev: $(epson_) page.dev
  4599.     $(SETPDEV) ibmpro $(epson_)
  4600.  
  4601. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4602. ### Note: this driver was contributed by users: please contact           ###
  4603. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4604.  
  4605. epsonc_=gdevepsc.$(OBJ)
  4606. epsonc.dev: $(epsonc_) page.dev
  4607.     $(SETPDEV) epsonc $(epsonc_)
  4608.  
  4609. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4610.  
  4611. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4612. ### Note: these drivers were contributed by users.                         ###
  4613. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4614. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4615. ### For questions about the Stylus Color drivers, please contact           ###
  4616. ###        Gunther Hess (gunther@elmos.de).                                ###
  4617.  
  4618. ESCP2=gdevescp.$(OBJ)
  4619.  
  4620. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4621.  
  4622. ap3250.dev: $(ESCP2) page.dev
  4623.     $(SETPDEV) ap3250 $(ESCP2)
  4624.  
  4625. st800.dev: $(ESCP2) page.dev
  4626.     $(SETPDEV) st800 $(ESCP2)
  4627.  
  4628. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4629. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4630. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4631.     $(SETPDEV) stcolor $(stcolor1_)
  4632.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4633.  
  4634. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4635.  
  4636. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4637.  
  4638. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4639.  
  4640. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4641.  
  4642. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4643.  
  4644. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4645. ### For questions about this driver, please contact:                       ###
  4646. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4647.  
  4648. uniprint_=gdevupd.$(OBJ)
  4649. uniprint.dev: $(uniprint_) page.dev
  4650.     $(SETPDEV) uniprint $(uniprint_)
  4651.  
  4652. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4653.  
  4654. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4655. ### Since this driver is in the development-phase it is not distributed    ###
  4656. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4657. ###                        ftp://bonk.ethz.ch                              ###
  4658. ### For questions about this driver, please contact:                       ###
  4659. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4660.  
  4661. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4662.  
  4663. cdj850.dev: $(cdeskjet8_) page.dev
  4664.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4665.  
  4666. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4667. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4668. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4669. ### If you have questions about the XL, please contact Rob Reiss         ###
  4670. ###       (rob@moray.berkeley.edu).                                      ###
  4671.  
  4672. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4673.  
  4674. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4675.  
  4676. lj250.dev: $(PJET) page.dev
  4677.     $(SETPDEV) lj250 $(PJET)
  4678.  
  4679. paintjet.dev: $(PJET) page.dev
  4680.     $(SETPDEV) paintjet $(PJET)
  4681.  
  4682. pjetxl.dev: $(PJET) page.dev
  4683.     $(SETPDEV) pjetxl $(PJET)
  4684.  
  4685. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4686. ### Note: this driver was contributed by a user: please contact          ###
  4687. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4688. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4689. ### Don't set it if using 'ipr' spooler (default).                       ###
  4690. ### You may also add -DA4 if needed for A4 paper.             ###
  4691.  
  4692. imagen_=gdevimgn.$(OBJ)
  4693. imagen.dev: $(imagen_) page.dev
  4694.     $(SETPDEV) imagen $(imagen_)
  4695.  
  4696. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4697.     $(CCC) gdevimgn.c            # for ipr spooler
  4698. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4699.  
  4700. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4701. ### Note: this driver was contributed by users: please contact           ###
  4702. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4703. ### Note that the paper size that can be addressed by the graphics mode  ###
  4704. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4705. ###   width of the jetprinter itself.)                                   ###
  4706.  
  4707. jetp3852_=gdev3852.$(OBJ)
  4708. jetp3852.dev: $(jetp3852_) page.dev
  4709.     $(SETPDEV) jetp3852 $(jetp3852_)
  4710.  
  4711. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4712.  
  4713. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4714. ### Note: these drivers were contributed by users.                       ###
  4715. ### For questions about these drivers, please contact                    ###
  4716. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4717.  
  4718. lbp8_=gdevlbp8.$(OBJ)
  4719. lbp8.dev: $(lbp8_) page.dev
  4720.     $(SETPDEV) lbp8 $(lbp8_)
  4721.  
  4722. lips3.dev: $(lbp8_) page.dev
  4723.     $(SETPDEV) lips3 $(lbp8_)
  4724.  
  4725. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4726.  
  4727. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4728. ### Note: this driver was contributed by users: please contact           ###
  4729. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4730. ### For questions about LA50 and LA75, please contact                    ###
  4731. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4732. ### For questions about the LA70, please contact                         ###
  4733. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4734. ### For questions about the LA75plus, please contact                     ###
  4735. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4736.  
  4737. ln03_=gdevln03.$(OBJ)
  4738. ln03.dev: $(ln03_) page.dev
  4739.     $(SETPDEV) ln03 $(ln03_)
  4740.  
  4741. la50.dev: $(ln03_) page.dev
  4742.     $(SETPDEV) la50 $(ln03_)
  4743.  
  4744. la70.dev: $(ln03_) page.dev
  4745.     $(SETPDEV) la70 $(ln03_)
  4746.  
  4747. la75.dev: $(ln03_) page.dev
  4748.     $(SETPDEV) la75 $(ln03_)
  4749.  
  4750. la75plus.dev: $(ln03_) page.dev
  4751.     $(SETPDEV) la75plus $(ln03_)
  4752.  
  4753. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4754.  
  4755. # LA70 driver with low-resolution text enhancement.
  4756.  
  4757. la70t_=gdevla7t.$(OBJ)
  4758. la70t.dev: $(la70t_) page.dev
  4759.     $(SETPDEV) la70t $(la70t_)
  4760.  
  4761. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4762.  
  4763. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4764. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4765. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4766.  
  4767. lp8000_=gdevlp8k.$(OBJ)
  4768. lp8000.dev: $(lp8000_) page.dev
  4769.     $(SETPDEV) lp8000 $(lp8000_)
  4770.  
  4771. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4772.  
  4773. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4774. ### Note: this driver was contributed by a user: please contact Bob      ###
  4775. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4776.  
  4777. m8510_=gdev8510.$(OBJ)
  4778. m8510.dev: $(m8510_) page.dev
  4779.     $(SETPDEV) m8510 $(m8510_)
  4780.  
  4781. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4782.  
  4783. ### -------------- 24pin Dot-matrix printer with 360DPI ---------------- ###
  4784. ### Note: this driver was contributed by users.  Please contact:         ###
  4785. ###    Andreas Schwab (schwab@ls5.informatik.uni-dortmund.de) for        ###
  4786. ###      questions about the NEC P6;                                     ###
  4787. ###    Christian Felsch (felsch@tu-harburg.d400.de) for                  ###
  4788. ###      questions about the Epson LQ850.                                ###
  4789.  
  4790. dm24_=gdevdm24.$(OBJ)
  4791. gdevdm24.$(OBJ): gdevdm24.c $(PDEVH)
  4792.  
  4793. necp6.dev: $(dm24_) page.dev
  4794.     $(SETPDEV) necp6 $(dm24_)
  4795.  
  4796. lq850.dev: $(dm24_) page.dev
  4797.     $(SETPDEV) lq850 $(dm24_)
  4798.  
  4799. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4800. ### Note: this driver was contributed by a user: please contact          ###
  4801. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4802.  
  4803. oki182_=gdevo182.$(OBJ)
  4804. oki182.dev: $(oki182_) page.dev
  4805.     $(SETPDEV) oki182 $(oki182_)
  4806.  
  4807. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4808.  
  4809. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4810. ### Note: this driver was contributed by a user: please contact          ###
  4811. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4812.  
  4813. okiibm_=gdevokii.$(OBJ)
  4814. okiibm.dev: $(okiibm_) page.dev
  4815.     $(SETPDEV) okiibm $(okiibm_)
  4816.  
  4817. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4818.  
  4819. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4820. ### Note: this driver was contributed by users:                          ###
  4821. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4822.  
  4823. r4081_=gdev4081.$(OBJ)
  4824. r4081.dev: $(r4081_) page.dev
  4825.     $(SETPDEV) r4081 $(r4081_)
  4826.  
  4827.  
  4828. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4829.  
  4830. ### -------------------- Sony NWP533 printer device -------------------- ###
  4831. ### Note: this driver was contributed by a user: please contact Tero     ###
  4832. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4833.  
  4834. nwp533_=gdevn533.$(OBJ)
  4835. nwp533.dev: $(nwp533_) page.dev
  4836.     $(SETPDEV) nwp533 $(nwp533_)
  4837.  
  4838. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4839.  
  4840. ### ------------------------- The SPARCprinter ------------------------- ###
  4841. ### Note: this driver was contributed by users: please contact Martin    ###
  4842. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4843. ###       He would also like to hear from anyone using the driver.       ###
  4844. ### Please consult the source code for additional documentation.         ###
  4845.  
  4846. sparc_=gdevsppr.$(OBJ)
  4847. sparc.dev: $(sparc_) page.dev
  4848.     $(SETPDEV) sparc $(sparc_)
  4849.  
  4850. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4851.  
  4852. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4853. ### Note: this driver was contributed by a user: if you have questions,  ###
  4854. ###                          .                                          ###
  4855. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4856.  
  4857. sj48_=gdevsj48.$(OBJ)
  4858. sj48.dev: $(sj48_) page.dev
  4859.     $(SETPDEV) sj48 $(sj48_)
  4860.  
  4861. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4862.  
  4863. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4864. ### Note: this driver was contributed by a user: please contact          ###
  4865. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4866. ###       if you have questions.                                         ###
  4867.  
  4868. t4693d_=gdev4693.$(OBJ)
  4869. t4693d2.dev: $(t4693d_) page.dev
  4870.     $(SETPDEV) t4693d2 $(t4693d_)
  4871.  
  4872. t4693d4.dev: $(t4693d_) page.dev
  4873.     $(SETPDEV) t4693d4 $(t4693d_)
  4874.  
  4875. t4693d8.dev: $(t4693d_) page.dev
  4876.     $(SETPDEV) t4693d8 $(t4693d_)
  4877.  
  4878. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4879.  
  4880. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4881. ### Note: this driver was contributed by a user: please contact          ###
  4882. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4883.  
  4884. tek4696_=gdevtknk.$(OBJ)
  4885. tek4696.dev: $(tek4696_) page.dev
  4886.     $(SETPDEV) tek4696 $(tek4696_)
  4887.  
  4888. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4889.  
  4890. ### ----------------- The Xerox XES printer device --------------------- ###
  4891. ### Note: this driver was contributed by users: please contact           ###
  4892. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4893.  
  4894. xes_=gdevxes.$(OBJ)
  4895. xes.dev: $(xes_) page.dev
  4896.     $(SETPDEV) xes $(xes_)
  4897.  
  4898. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4899.  
  4900. ###### ------------------------- Fax devices ------------------------- ######
  4901.  
  4902. ### --------------- Generic PostScript system compatible fax ------------ ###
  4903.  
  4904. # This code doesn't work yet.  Don't even think about using it.
  4905.  
  4906. PSFAX=gdevpfax.$(OBJ)
  4907.  
  4908. psfax_=$(PSFAX)
  4909. psfax.dev: $(psfax_) page.dev
  4910.     $(SETPDEV) psfax $(psfax_)
  4911.     $(ADDMOD) psfax -iodev Fax
  4912.  
  4913. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4914.  
  4915. ### ------------------------- The DigiFAX device ------------------------ ###
  4916. ###    This driver outputs images in a format suitable for use with       ###
  4917. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4918. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4919. ### Note: this driver was contributed by a user: please contact           ###
  4920. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4921.  
  4922. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4923.  
  4924. dfaxlow.dev: $(dfax_) page.dev
  4925.     $(SETPDEV) dfaxlow $(dfax_)
  4926.     $(ADDMOD) dfaxlow -include cfe
  4927.  
  4928. dfaxhigh.dev: $(dfax_) page.dev
  4929.     $(SETPDEV) dfaxhigh $(dfax_)
  4930.     $(ADDMOD) dfaxhigh -include cfe
  4931.  
  4932. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  4933.  
  4934. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  4935.  
  4936. ###### ------------------- High-level file formats ------------------- ######
  4937.  
  4938. # Support for PostScript and PDF
  4939.  
  4940. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  4941. gdevpstr_h=gdevpstr.h
  4942.  
  4943. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  4944.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  4945.  $(gxdevice_h)\
  4946.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  4947.  $(gdevpsdf_h) $(gdevpstr_h)
  4948.  
  4949. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  4950.  $(gdevpstr_h) $(stream_h)
  4951.  
  4952. # PostScript and EPS writers
  4953.  
  4954. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4955. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  4956. pswrite_=$(pswrite1_) $(pswrite2_)
  4957. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4958.     $(SETDEV) epswrite $(pswrite1_)
  4959.     $(ADDMOD) epswrite $(pswrite2_)
  4960.     $(ADDMOD) epswrite -include vector
  4961.  
  4962. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  4963.     $(SETDEV) pswrite $(pswrite1_)
  4964.     $(ADDMOD) pswrite $(pswrite2_)
  4965.     $(ADDMOD) pswrite -include vector
  4966.  
  4967. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  4968.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  4969.  $(gxdcolor_h)\
  4970.  $(sa85x_h) $(strimpl_h)\
  4971.  $(gdevpsdf_h) $(gdevpstr_h)
  4972.  
  4973. # PDF writer
  4974. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  4975. # includes a PostScript interpreter.
  4976.  
  4977. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  4978. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  4979. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  4980. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  4981. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  4982.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  4983.     $(SETDEV) pdfwrite $(pdfwrite1_)
  4984.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  4985.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  4986.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  4987.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  4988.  
  4989. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  4990.  $(gdevpsdf_h) $(gdevpstr_h)
  4991.  
  4992. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  4993.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  4994.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  4995.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  4996.  
  4997. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  4998.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  4999.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  5000.  
  5001. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  5002.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  5003.  
  5004. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  5005.  $(gdevpdfx_h) $(gserrors_h)
  5006.  
  5007. gdevpdft.$(OBJ): gdevpdft.c $(math__h) $(string__h) $(gx_h)\
  5008.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  5009.  $(sstring_h) $(strimpl_h)
  5010.  
  5011. # High-level PCL XL writer
  5012.  
  5013. pxl_=gdevpx.$(OBJ)
  5014. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5015.     $(SETDEV) pxlmono $(pxl_)
  5016.     $(ADDMOD) pxlmono -include vector
  5017.  
  5018. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5019.     $(SETDEV) pxlcolor $(pxl_)
  5020.     $(ADDMOD) pxlcolor -include vector
  5021.  
  5022. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5023.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5024.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5025.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5026.  $(srlx_h) $(strimpl_h)
  5027.  
  5028. ###### --------------------- Raster file formats --------------------- ######
  5029.  
  5030. ### --------------------- The "plain bits" devices ---------------------- ###
  5031.  
  5032. bit_=gdevbit.$(OBJ)
  5033.  
  5034. bit.dev: $(bit_) page.dev
  5035.     $(SETPDEV) bit $(bit_)
  5036.  
  5037. bitrgb.dev: $(bit_) page.dev
  5038.     $(SETPDEV) bitrgb $(bit_)
  5039.  
  5040. bitcmyk.dev: $(bit_) page.dev
  5041.     $(SETPDEV) bitcmyk $(bit_)
  5042.  
  5043. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5044.  
  5045. ### ------------------------- .BMP file formats ------------------------- ###
  5046.  
  5047. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5048.  
  5049. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5050.  
  5051. bmpmono.dev: $(bmp_) page.dev
  5052.     $(SETPDEV) bmpmono $(bmp_)
  5053.  
  5054. bmp16.dev: $(bmp_) page.dev
  5055.     $(SETPDEV) bmp16 $(bmp_)
  5056.  
  5057. bmp256.dev: $(bmp_) page.dev
  5058.     $(SETPDEV) bmp256 $(bmp_)
  5059.  
  5060. bmp16m.dev: $(bmp_) page.dev
  5061.     $(SETPDEV) bmp16m $(bmp_)
  5062.  
  5063. ### -------------------------- CGM file format ------------------------- ###
  5064. ### This driver is under development.  Use at your own risk.             ###
  5065. ### The output is very low-level, consisting only of rectangles and      ###
  5066. ### cell arrays.                                                         ###
  5067.  
  5068. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5069.  
  5070. gdevcgml_h=gdevcgml.h
  5071. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5072.  
  5073. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5074.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5075.  
  5076. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5077.  $(gdevcgmx_h)
  5078.  
  5079. cgmmono.dev: $(cgm_)
  5080.     $(SETDEV) cgmmono $(cgm_)
  5081.  
  5082. cgm8.dev: $(cgm_)
  5083.     $(SETDEV) cgm8 $(cgm_)
  5084.  
  5085. cgm24.dev: $(cgm_)
  5086.     $(SETDEV) cgm24 $(cgm_)
  5087.  
  5088. ### -------------------- The CIF file format for VLSI ------------------ ###
  5089. ### Note: this driver was contributed by a user: please contact          ###
  5090. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5091.  
  5092. cif_=gdevcif.$(OBJ)
  5093. cif.dev: $(cif_) page.dev
  5094.     $(SETPDEV) cif $(cif_)
  5095.  
  5096. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5097.  
  5098. ### ------------------------- JPEG file format ------------------------- ###
  5099.  
  5100. jpeg_=gdevjpeg.$(OBJ)
  5101.  
  5102. # RGB output
  5103. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5104.     $(SETPDEV) jpeg $(jpeg_)
  5105.     $(ADDMOD) jpeg -include sdcte
  5106.  
  5107. # Gray output
  5108. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5109.     $(SETPDEV) jpeggray $(jpeg_)
  5110.     $(ADDMOD) jpeggray -include sdcte
  5111.  
  5112. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5113.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5114.  
  5115. ### ------------------------- MIFF file format ------------------------- ###
  5116. ### Right now we support only 24-bit direct color, but we might add more ###
  5117. ### formats in the future.                                               ###
  5118.  
  5119. miff_=gdevmiff.$(OBJ)
  5120.  
  5121. miff24.dev: $(miff_) page.dev
  5122.     $(SETPDEV) miff24 $(miff_)
  5123.  
  5124. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5125.  
  5126. ### --------------------------- MGR devices ---------------------------- ###
  5127. ### Note: these drivers were contributed by a user: please contact       ###
  5128. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5129.  
  5130. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5131.  
  5132. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5133.  
  5134. mgrmono.dev: $(MGR) page.dev
  5135.     $(SETPDEV) mgrmono $(MGR)
  5136.  
  5137. mgrgray2.dev: $(MGR) page.dev
  5138.     $(SETPDEV) mgrgray2 $(MGR)
  5139.  
  5140. mgrgray4.dev: $(MGR) page.dev
  5141.     $(SETPDEV) mgrgray4 $(MGR)
  5142.  
  5143. mgrgray8.dev: $(MGR) page.dev
  5144.     $(SETPDEV) mgrgray8 $(MGR)
  5145.  
  5146. mgr4.dev: $(MGR) page.dev
  5147.     $(SETPDEV) mgr4 $(MGR)
  5148.  
  5149. mgr8.dev: $(MGR) page.dev
  5150.     $(SETPDEV) mgr8 $(MGR)
  5151.  
  5152. ### ------------------------- PCX file formats ------------------------- ###
  5153.  
  5154. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5155.  
  5156. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5157.  
  5158. pcxmono.dev: $(pcx_) page.dev
  5159.     $(SETPDEV) pcxmono $(pcx_)
  5160.  
  5161. pcxgray.dev: $(pcx_) page.dev
  5162.     $(SETPDEV) pcxgray $(pcx_)
  5163.  
  5164. pcx16.dev: $(pcx_) page.dev
  5165.     $(SETPDEV) pcx16 $(pcx_)
  5166.  
  5167. pcx256.dev: $(pcx_) page.dev
  5168.     $(SETPDEV) pcx256 $(pcx_)
  5169.  
  5170. pcx24b.dev: $(pcx_) page.dev
  5171.     $(SETPDEV) pcx24b $(pcx_)
  5172.  
  5173. pcxcmyk.dev: $(pcx_) page.dev
  5174.     $(SETPDEV) pcxcmyk $(pcx_)
  5175.  
  5176. # The 2-up PCX device is here only as an example, and for testing.
  5177. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5178.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5179.     $(ADDMOD) pcx2up -include pcx256
  5180.  
  5181. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5182.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5183.  
  5184. ### ------------------- Portable Bitmap file formats ------------------- ###
  5185. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5186.  
  5187. pxm_=gdevpbm.$(OBJ)
  5188.  
  5189. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5190.  
  5191. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5192.  
  5193. pbm.dev: $(pxm_) page.dev
  5194.     $(SETPDEV) pbm $(pxm_)
  5195.  
  5196. pbmraw.dev: $(pxm_) page.dev
  5197.     $(SETPDEV) pbmraw $(pxm_)
  5198.  
  5199. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5200.  
  5201. pgm.dev: $(pxm_) page.dev
  5202.     $(SETPDEV) pgm $(pxm_)
  5203.  
  5204. pgmraw.dev: $(pxm_) page.dev
  5205.     $(SETPDEV) pgmraw $(pxm_)
  5206.  
  5207. # PGM with automatic optimization to PBM if this is possible.
  5208.  
  5209. pgnm.dev: $(pxm_) page.dev
  5210.     $(SETPDEV) pgnm $(pxm_)
  5211.  
  5212. pgnmraw.dev: $(pxm_) page.dev
  5213.     $(SETPDEV) pgnmraw $(pxm_)
  5214.  
  5215. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5216.  
  5217. ppm.dev: $(pxm_) page.dev
  5218.     $(SETPDEV) ppm $(pxm_)
  5219.  
  5220. ppmraw.dev: $(pxm_) page.dev
  5221.     $(SETPDEV) ppmraw $(pxm_)
  5222.  
  5223. # PPM with automatic optimization to PGM or PBM if possible.
  5224.  
  5225. pnm.dev: $(pxm_) page.dev
  5226.     $(SETPDEV) pnm $(pxm_)
  5227.  
  5228. pnmraw.dev: $(pxm_) page.dev
  5229.     $(SETPDEV) pnmraw $(pxm_)
  5230.  
  5231. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5232.  
  5233. pkm.dev: $(pxm_) page.dev
  5234.     $(SETPDEV) pkm $(pxm_)
  5235.  
  5236. pkmraw.dev: $(pxm_) page.dev
  5237.     $(SETPDEV) pkmraw $(pxm_)
  5238.  
  5239. ### --------------- Portable Network Graphics file format --------------- ###
  5240. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5241. ### See libpng.mak and zlib.mak for more details.                         ###
  5242.  
  5243. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5244.  
  5245. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5246.     $(CCCP) gdevpng.c
  5247.  
  5248. pngmono.dev: libpng.dev $(png_) page.dev
  5249.     $(SETPDEV) pngmono  $(png_)
  5250.     $(ADDMOD) pngmono  -include libpng
  5251.  
  5252. pnggray.dev: libpng.dev $(png_) page.dev
  5253.     $(SETPDEV) pnggray  $(png_)
  5254.     $(ADDMOD) pnggray  -include libpng
  5255.  
  5256. png16.dev: libpng.dev $(png_) page.dev
  5257.     $(SETPDEV) png16  $(png_)
  5258.     $(ADDMOD) png16  -include libpng
  5259.  
  5260. png256.dev: libpng.dev $(png_) page.dev
  5261.     $(SETPDEV) png256  $(png_)
  5262.     $(ADDMOD) png256  -include libpng
  5263.  
  5264. png16m.dev: libpng.dev $(png_) page.dev
  5265.     $(SETPDEV) png16m  $(png_)
  5266.     $(ADDMOD) png16m  -include libpng
  5267.  
  5268. ### ---------------------- PostScript image format ---------------------- ###
  5269. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5270. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5271.  
  5272. ps_=gdevpsim.$(OBJ)
  5273.  
  5274. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5275.  
  5276. psmono.dev: $(ps_) page.dev
  5277.     $(SETPDEV) psmono $(ps_)
  5278.  
  5279. psgray.dev: $(ps_) page.dev
  5280.     $(SETPDEV) psgray $(ps_)
  5281.  
  5282. # Someday there will be RGB and CMYK variants....
  5283.  
  5284. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5285.  
  5286. sgirgb_=gdevsgi.$(OBJ)
  5287.  
  5288. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5289.  
  5290. sgirgb.dev: $(sgirgb_) page.dev
  5291.     $(SETPDEV) sgirgb $(sgirgb_)
  5292.  
  5293. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5294. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5295. ###      -r204x98 for low resolution output, or              ###
  5296. ###      -r204x196 for high resolution output                  ###
  5297. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5298.  
  5299. gdevtifs_h=gdevtifs.h
  5300.  
  5301. tfax_=gdevtfax.$(OBJ)
  5302. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5303.     $(SETMOD) tfax $(tfax_)
  5304.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5305.  
  5306. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5307.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5308.  
  5309. ### Plain G3/G4 fax with no header
  5310.  
  5311. faxg3.dev: tfax.dev
  5312.     $(SETDEV) faxg3 -include tfax
  5313.  
  5314. faxg32d.dev: tfax.dev
  5315.     $(SETDEV) faxg32d -include tfax
  5316.  
  5317. faxg4.dev: tfax.dev
  5318.     $(SETDEV) faxg4 -include tfax
  5319.  
  5320. ### ---------------------------- TIFF formats --------------------------- ###
  5321.  
  5322. tiffs_=gdevtifs.$(OBJ)
  5323. tiffs.dev: $(tiffs_) page.dev
  5324.     $(SETMOD) tiffs $(tiffs_)
  5325.     $(ADDMOD) tiffs -include page
  5326.  
  5327. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5328.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5329.  
  5330. # Black & white, G3/G4 fax
  5331.  
  5332. tiffcrle.dev: tfax.dev
  5333.     $(SETDEV) tiffcrle -include tfax
  5334.  
  5335. tiffg3.dev: tfax.dev
  5336.     $(SETDEV) tiffg3 -include tfax
  5337.  
  5338. tiffg32d.dev: tfax.dev
  5339.     $(SETDEV) tiffg32d -include tfax
  5340.  
  5341. tiffg4.dev: tfax.dev
  5342.     $(SETDEV) tiffg4 -include tfax
  5343.  
  5344. # Black & white, LZW compression
  5345.  
  5346. tifflzw.dev: tfax.dev
  5347.     $(SETDEV) tifflzw -include tfax
  5348.  
  5349. # Black & white, PackBits compression
  5350.  
  5351. tiffpack.dev: tfax.dev
  5352.     $(SETDEV) tiffpack -include tfax
  5353.  
  5354. # RGB, no compression
  5355.  
  5356. tiffrgb_=gdevtfnx.$(OBJ)
  5357.  
  5358. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5359.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5360.     $(ADDMOD) tiff12nc -include tiffs
  5361.  
  5362. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5363.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5364.     $(ADDMOD) tiff24nc -include tiffs
  5365.  
  5366. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5367. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5368. # This file is part of Aladdin Ghostscript.
  5369. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5370. # or distributor accepts any responsibility for the consequences of using it,
  5371. # or for whether it serves any particular purpose or works at all, unless he
  5372. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5373. # License (the "License") for full details.
  5374. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5375. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5376. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5377. # under certain conditions described in the License.  Among other things, the
  5378. # License requires that the copyright notice and this notice be preserved on
  5379. # all copies.
  5380.  
  5381. # Partial makefile common to all Unix configurations.
  5382.  
  5383. # This is the last part of the makefile for Unix configurations.
  5384. # Since Unix make doesn't have an 'include' facility, we concatenate
  5385. # the various parts of the makefile together by brute force (in tar_cat).
  5386.  
  5387. # Define the name of this makefile.
  5388. UNIXTAIL_MAK=unixtail.mak
  5389.  
  5390. # The following prevents GNU make from constructing argument lists that
  5391. # include all environment variables, which can easily be longer than
  5392. # brain-damaged system V allows.
  5393.  
  5394. .NOEXPORT:
  5395.  
  5396. # -------------------------------- Library -------------------------------- #
  5397.  
  5398. ## The Unix platforms
  5399.  
  5400. # We have to include a test for the existence of sys/time.h,
  5401. # because some System V platforms don't have it.
  5402.  
  5403. # Define pipes as a separable feature.
  5404.  
  5405. pipe_=gdevpipe.$(OBJ)
  5406. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5407.     $(SETMOD) pipe $(pipe_)
  5408.     $(ADDMOD) pipe -iodev pipe
  5409.  
  5410. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5411.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5412.  
  5413. # Unix platforms other than System V, and also System V Release 4
  5414. # (SVR4) platforms.
  5415. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5416. unix_.dev: $(unix__)
  5417.     $(SETMOD) unix_ $(unix__)
  5418.  
  5419. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5420.   $(time__h)
  5421.  
  5422. # System V platforms other than SVR4, which lack some system calls,
  5423. # but have pipes.
  5424. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5425. sysv_.dev: $(sysv__)
  5426.     $(SETMOD) sysv_ $(sysv__)
  5427.  
  5428. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5429.  
  5430. # -------------------------- Auxiliary programs --------------------------- #
  5431.  
  5432. $(ANSI2KNR_XE): ansi2knr.c
  5433.     $(CCA2K) $(O)$(ANSI2KNR_XE) ansi2knr.c
  5434.  
  5435. $(ECHOGS_XE): echogs.c $(AK)
  5436.     $(CCAUX) $(O)$(ECHOGS_XE) echogs.c
  5437.  
  5438. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5439. # produces a buggy executable.
  5440. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5441.     $(CCAUX) $(O)$(GENARCH_XE) genarch.c
  5442.  
  5443. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5444.     $(CCAUX) $(O)$(GENCONF_XE) genconf.c
  5445.  
  5446. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5447.     $(CCAUX) $(O)$(GENINIT_XE) geninit.c
  5448.  
  5449. # Query the environment to construct gconfig_.h.
  5450. # The "else true; is required because Ultrix's implementation of sh -e
  5451. # terminates execution of a command if any error occurs, even if the command
  5452. # traps the error with ||.
  5453. INCLUDE=/usr/include
  5454. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5455.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5456.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5457.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5458.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5459.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5460.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5461.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5462.  
  5463. # ----------------------------- Main program ------------------------------ #
  5464.  
  5465. ### Library files and archive
  5466.  
  5467. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5468.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5469.  
  5470. # Build an archive for the library only.
  5471. # This is not used in a standard build.
  5472. GSLIB_A=$(GS)lib.a
  5473. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5474.     rm -f $(GSLIB_A)
  5475.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5476.     $(RANLIB) $(GSLIB_A)
  5477.  
  5478. ### Interpreter main program
  5479.  
  5480. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5481.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5482. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5483.  
  5484. # Build a library archive for the entire interpreter.
  5485. # This is not used in a standard build.
  5486. GS_A=$(GS).a
  5487. $(GS_A): $(INT_ARCHIVE_ALL)
  5488.     rm -f $(GS_A)
  5489.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5490.     $(RANLIB) $(GS_A)
  5491.  
  5492. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5493. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5494. # The resetting of the environment variables to empty strings is for SCO Unix,
  5495. # which has limited environment space.
  5496. $(GS_XE): ld.tr echogs $(XE_ALL)
  5497.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5498.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5499.     cat ld.tr >>ldt.tr
  5500.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5501.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5502.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5503.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5504.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5505.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5506.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5507.     $(SH) <ldt.tr
  5508. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5509. # This file is part of Aladdin Ghostscript.
  5510. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5511. # or distributor accepts any responsibility for the consequences of using it,
  5512. # or for whether it serves any particular purpose or works at all, unless he
  5513. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5514. # License (the "License") for full details.
  5515. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5516. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5517. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5518. # under certain conditions described in the License.  Among other things, the
  5519. # License requires that the copyright notice and this notice be preserved on
  5520. # all copies.
  5521.  
  5522. # Partial makefile common to all Unix and Desqview/X configurations.
  5523.  
  5524. # This is the very last part of the makefile for these configurations.
  5525. # Since Unix make doesn't have an 'include' facility, we concatenate
  5526. # the various parts of the makefile together by brute force (in tar_cat).
  5527.  
  5528. # Define a rule for building profiling configurations.
  5529. pg:
  5530.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5531.  
  5532. # Define a rule for building debugging configurations.
  5533. debug:
  5534.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5535.  
  5536. # The rule for gconfigv.h is here because it is shared between Unix and
  5537. # DV/X environments.
  5538. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5539.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5540.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5541.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5542.  
  5543. # The following rules are equivalent to what tar_cat does.
  5544. # The rm -f is so that we don't overwrite a file that `make'
  5545. # may currently be reading from.
  5546. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5547. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5548.  
  5549. unix.mak: $(UNIX_MAK_LIST)
  5550.  
  5551. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5552. dvx-gcc.mak: $(DVX_GCC_MAK)
  5553.     rm -f dvx-gcc.mak
  5554.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5555.  
  5556. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5557. unixansi.mak: $(UNIXANSI_MAK)
  5558.     rm -f unixansi.mak
  5559.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5560.  
  5561. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5562. unix-cc.mak: $(UNIX_CC_MAK)
  5563.     rm -f unix-cc.mak
  5564.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5565.  
  5566. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5567. unix-gcc.mak: $(UNIX_GCC_MAK)
  5568.     rm -f unix-gcc.mak
  5569.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5570.  
  5571. # Installation
  5572.  
  5573. TAGS:
  5574.     etags -t *.c *.h
  5575.  
  5576. install: install-exec install-scripts install-data
  5577.  
  5578. # The sh -c in the rules below is required because Ultrix's implementation
  5579. # of sh -e terminates execution of a command if any error occurs, even if
  5580. # the command traps the error with ||.
  5581.  
  5582. install-exec: $(GS)
  5583.     -mkdir $(bindir)
  5584.     $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5585.  
  5586. install-scripts: gsnd
  5587.     -mkdir $(scriptdir)
  5588.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5589. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5590.     do if ( test -f $$f ); then $(INSTALL_PROGRAM) $$f $(scriptdir)/$$f; fi;\
  5591.     done'
  5592.  
  5593. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5594. install-data: gs.1
  5595.     -mkdir $(mandir)
  5596.     -mkdir $(man1dir)
  5597.     sh -c 'for f in $(MAN1_PAGES) ;\
  5598.     do if ( test -f $$f.1 ); then $(INSTALL_DATA) $$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5599.     done'
  5600.     -mkdir $(datadir)
  5601.     -mkdir $(gsdir)
  5602.     -mkdir $(gsdatadir)
  5603.     sh -c 'for f in Fontmap \
  5604. cbjc600.ppd cbjc800.ppd *.upp \
  5605. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5606. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5607. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5608. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5609. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5610. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5611. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5612. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5613. markhint.ps markpath.ps \
  5614. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5615. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5616. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5617. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5618. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5619. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5620. gs_l2img.ps gs_pdf.ps \
  5621. pdf2dsc.ps \
  5622. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5623. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5624. gs_pdfwr.ps ;\
  5625.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(gsdatadir)/$$f; fi;\
  5626.     done'
  5627.     -mkdir $(docdir)
  5628.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5629. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5630. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5631. install.txt language.txt lib.txt make.txt new-user.txt \
  5632. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5633. unix-lpr.txt use.txt xfonts.txt ;\
  5634.     do if ( test -f $$f ); then $(INSTALL_DATA) $$f $(docdir)/$$f; fi;\
  5635.     done'
  5636.     -mkdir $(exdir)
  5637.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5638. grayalph.ps snowflak.ps tiger.ps waterfal.ps \
  5639. ridt91.eps ;\
  5640.     do $(INSTALL_DATA) $$f $(exdir)/$$f ;\
  5641.     done
  5642.